UNPKG

231 BTypeScriptView Raw
1import { Properties } from 'csstype';
2export interface Dict<T> {
3 [key: string]: T;
4}
5export declare type ExactCSSProperties = Properties<string | number>;
6export declare type CSSProperties = ExactCSSProperties & Dict<any>;