constants.d.ts 825 B

12345678
  1. /** @constant {string} INVALID_LAYER_NAME Used to replace "layer" temporarily when an invalid layer is detected. This allows us to ignore this rule in further processing. */
  2. export declare const INVALID_LAYER_NAME = "csstools-invalid-layer";
  3. /** @constant {string} WITH_SELECTORS_LAYER_NAME Used to replace "layer" temporarily for any layer at rules that contain selectors. This allows us to sort these differently from other layer at rules. */
  4. export declare const WITH_SELECTORS_LAYER_NAME = "csstools-layer-with-selector-rules";
  5. export declare const ANONYMOUS_LAYER_SUFFIX = "6efdb677-bb05-44e5-840f-29d2175862fd";
  6. export declare const IMPLICIT_LAYER_SUFFIX = "b147acf6-11a6-4338-a4d0-80aef4cd1a2f";
  7. export declare const CONDITIONAL_ATRULES: string[];
  8. export declare const ATRULES_WITH_NON_SELECTOR_BLOCK_LISTS: string[];