aliascss
Version:
AliasCSS is a CSS post processor.
23 lines (22 loc) • 644 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[];
remUnits: string[];
remUnitsNegative: string[];
widths: string[];
modes: string[];
};
export default config;