UNPKG

191 BTypeScriptView Raw
1export declare type StyleObject = {
2 [key: string]: string | number | StyleObject | (string | number | StyleObject)[];
3};
4export default function cssifyObject(style: StyleObject): string;