Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
flaviendelangle committed Dec 17, 2024
1 parent 86fc30e commit ae33e3d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/x-date-pickers/src/TimeClock/Clock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,13 @@ export interface ClockProps<TDate extends PickerValidDate>
/**
* The current full date value.
*/
value: PickerValidDate | null;
value: TDate | null;
/**
* Minimum and maximum value of the clock.
*/
viewRange: [number, number];
disabled?: boolean;
readOnly?: boolean;
className?: string;
classes?: Partial<ClockClasses>;
}
Expand Down

0 comments on commit ae33e3d

Please sign in to comment.