@onesy/style
Version:
CSS in JS styling solution
13 lines (12 loc) • 449 B
TypeScript
import { TValue, TMode, IMethodResponse, IOptionsOnesyStyle, IOptionsOnesyTheme } from './interfaces';
export interface IOptions {
element?: Element;
name?: string;
mode?: TMode;
onesy_style?: IOptionsOnesyStyle;
onesy_theme?: IOptionsOnesyTheme;
add?: boolean;
return?: 'ids' | 'classNames' | 'classes' | 'keyframes';
}
declare function style(value_: TValue, options_?: IOptions): IMethodResponse;
export default style;