UNPKG

react-openfin-mat-impl

Version:
25 lines (24 loc) 709 B
import { CSSProperties } from "@material-ui/core/styles/withStyles"; export interface IOpenfinMatImplStyleConstant { drawerWidth: number; appbarHeight: number; windowBorder: number; transition: { transition: string; }; container: CSSProperties; boxShadow: { boxShadow: string; }; defaultFont: CSSProperties; primaryColor: string; warningColor: string; dangerColor: string; successColor: string; infoColor: string; roseColor: string; greyColor: string; } declare const initState: IOpenfinMatImplStyleConstant; export declare const initializeState: (state: Partial<IOpenfinMatImplStyleConstant>) => void; export default initState;