UNPKG

postcss-theme-fold

Version:

[![NPM Version][npm-img]][npm-url] [![github (ci)][github-ci]][github-ci]

14 lines (13 loc) 399 B
import { ChildNode } from 'postcss'; export declare const THEME_SELECTOR_RE: RegExp; export declare const VARIABLE_DECL_RE: RegExp; export declare const VARIABLE_USE_RE: RegExp; export declare const VARIABLE_FULL_RE: RegExp; export declare type EnhancedChildNode = ChildNode & { processed: boolean; broken: boolean; original: ChildNode; parent: { selector: string; }; };