@amaui/style
Version:
CSS in JS styling solution
10 lines (9 loc) • 342 B
TypeScript
import { TValue, IMethodResponse, IOptionsAmauiStyle, IOptionsAmauiTheme } from './interfaces';
export interface IOptions {
element?: Element;
name?: string;
amaui_style?: IOptionsAmauiStyle;
amaui_theme?: IOptionsAmauiTheme;
}
declare function pure(value_: TValue, options_?: IOptions): IMethodResponse;
export default pure;