diff --git a/packages/x-date-pickers/src/internals/models/muiPickersAdapter.d.ts b/packages/x-date-pickers/src/internals/models/muiPickersAdapter.d.ts index 21b0ea1c9412..b24dad0e96f2 100644 --- a/packages/x-date-pickers/src/internals/models/muiPickersAdapter.d.ts +++ b/packages/x-date-pickers/src/internals/models/muiPickersAdapter.d.ts @@ -1,7 +1,7 @@ import { IUtils } from '@date-io/core/IUtils'; // TODO: Maybe we should add the same constraint. -// @ts-expect-error TDate in our codebase does not have the `ExtendableDateType` constraint. +// @ts-ignore TDate in our codebase does not have the `ExtendableDateType` constraint. export type MuiPickersAdapter = IUtils; export type MuiDateSectionName = 'day' | 'month' | 'year' | 'hour' | 'minute' | 'second' | 'am-pm'; diff --git a/packages/x-date-pickers/src/themeAugmentation/props.d.ts b/packages/x-date-pickers/src/themeAugmentation/props.d.ts index e6c802f5122a..ee03cff22537 100644 --- a/packages/x-date-pickers/src/themeAugmentation/props.d.ts +++ b/packages/x-date-pickers/src/themeAugmentation/props.d.ts @@ -31,9 +31,10 @@ import { PickerStaticWrapperProps, ExportedCalendarHeaderProps, } from '../internals'; +import { CalendarOrClockPickerView } from '../internals/models'; export interface PickersComponentsPropsList { - MuiCalendarOrClockPicker: CalendarOrClockPickerProps; + MuiCalendarOrClockPicker: CalendarOrClockPickerProps; MuiCalendarPicker: CalendarPickerProps; MuiCalendarPickerSkeleton: CalendarPickerSkeletonProps; MuiClock: ClockProps;