@amaui/style
Version:
CSS in JS styling solution
19 lines (18 loc) • 661 B
TypeScript
import AmauiStyleSheetManager from './AmauiStyleSheetManager';
import { TValue, IIds, IOptionsAmauiStyle, IOptionsAmauiTheme } from './interfaces';
export interface IMakeStyles {
amaui_style_sheet_manager: AmauiStyleSheetManager;
ids: IIds;
add: (props?: any) => void;
update: (props: any) => void;
remove: () => void;
}
export interface IOptions {
element?: Element;
amaui_style?: IOptionsAmauiStyle;
amaui_theme?: IOptionsAmauiTheme;
response?: 'css' | 'json';
response_json_property_version?: 'cammel' | 'kebab';
}
declare function inline(value_: TValue, props?: any, options_?: IOptions): any;
export default inline;