UNPKG

material-ui-pickers

Version:

React components, that implements material design pickers for material-ui v1

8 lines (7 loc) 335 B
import { Omit } from '@material-ui/core'; /** * All standard components exposed by `material-ui` are `StyledComponents` with * certain `classes`, on which one can also set a top-level `className` and inline * `style`. */ export declare type ExtendMui<C, Removals extends keyof C = never> = Omit<C, 'classes' | 'theme' | Removals>;