UNPKG

@amaui/style

Version:
22 lines (21 loc) 461 B
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;