@amaui/style
Version:
CSS in JS styling solution
22 lines (21 loc) • 461 B
TypeScript
import AmauiStyle from './AmauiStyle';
export interface IPrefix {
value?: any;
arguments?: any;
}
export interface IOptionsSSR {
all: boolean;
}
export interface IOptions {
ssr?: IOptionsSSR;
}
declare function prefix(amauiStyle: AmauiStyle, options_?: IOptions): {
methods: {
method: (value_: {
property: string;
value: string;
}) => IPrefix;
};
remove: () => void;
};
export default prefix;