@amaui/style
Version:
CSS in JS styling solution
24 lines (23 loc) • 560 B
TypeScript
import AmauiStyle from './AmauiStyle';
export interface IOptionsDom {
unique?: boolean;
}
export interface IMakeClassName {
value?: any;
arguments?: any;
version?: 'development' | 'production';
}
export interface IOptions {
production?: boolean;
dom?: IOptionsDom;
}
declare function makeClassName(amauiStyle: AmauiStyle, options_?: IOptions): {
methods: {
method: (value_: {
property: string;
value: any;
}) => IMakeClassName;
};
remove: () => void;
};
export default makeClassName;