UNPKG

material-ui-pickers

Version:

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

5 lines (4 loc) 276 B
import { Omit } from '@material-ui/core'; import { InlineWrapperProps } from './InlineWrapper'; import { ModalWrapperProps } from './ModalWrapper'; export declare type ExtendWrapper<T extends InlineWrapperProps | ModalWrapperProps> = Omit<T, 'onChange' | 'value' | 'format'>;