UNPKG

@mui/x-date-pickers

Version:

The community edition of the Date and Time Picker components (MUI X).

13 lines (12 loc) 487 B
import type { PickersShortcutsItemContext } from '../PickersShortcuts'; export interface PickerChangeHandlerContext<TError> { validationError: TError; /** * Shortcut causing this `onChange` call. * If the call has not been caused by a shortcut selection, this property will be `undefined`. */ shortcut?: PickersShortcutsItemContext; } export interface PickerValidDateLookup { } export type PickerValidDate = PickerValidDateLookup[keyof PickerValidDateLookup];