epiphany/node_modules/@csstools/postcss-cascade-layers/dist/options.d.ts
2023-12-09 22:48:07 -08:00

9 lines
483 B
TypeScript

/** postcss-cascasde-layers plugin options */
export type pluginOptions = {
/** Emit a warning when the "revert" keyword is found in your CSS. default: "warn" */
onRevertLayerKeyword?: 'warn' | false;
/** Emit a warning when conditional rules could change the layer order. default: "warn" */
onConditionalRulesChangingLayerOrder?: 'warn' | false;
/** Emit a warning when "layer" is used in "@import". default: "warn" */
onImportLayerRule?: 'warn' | false;
};