aliascss
Version:
AliasCSS is a CSS post processor.
21 lines (20 loc) • 588 B
TypeScript
declare const config: {
prefix: string | null;
matchExtractorFunction: RegExp | null;
matchRegExp: RegExp;
matchRegExpWithColon: RegExp;
matchRegExpKeyFrame: RegExp;
matchRegExpWithColonKeyFrame: RegExp;
useColon: boolean;
ignore: string[];
createExtractorRegex: (a: string) => RegExp;
createCSSModuleRegex: (a: string) => RegExp;
useExtractorFunction: boolean;
useCSSModule: boolean;
matchCSSModuleFunction: RegExp;
globalValues: string[];
styles: string[];
widths: string[];
modes: string[];
};
export default config;