Files

5 lines
191 B
TypeScript

export declare type StyleObject = {
[key: string]: string | number | StyleObject | (string | number | StyleObject)[];
};
export default function cssifyObject(style: StyleObject): string;