UNPKG

@amaui/style

Version:
24 lines (23 loc) 560 B
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;