aliascss
Version:
AliasCSS is a CSS post processor.
20 lines (19 loc) • 379 B
TypeScript
type Property = {
alias?: string;
property?: string;
test?: RegExp;
type?: string;
values?: string[];
groups?: {
[key: string]: string;
};
compiler?: (a: string, b: {
[key: string]: {
[key: string]: string;
};
}) => any;
};
declare const cssProps: {
[key: string]: Property;
};
export default cssProps;