1
0
Fork 0
react-playground/node_modules/@mui/x-date-pickers/models/timezone.d.ts
Techognito fc0f69dacb Added Statistics calculation
Statistics now show calculated values
2025-09-04 17:30:00 +02:00

11 lines
No EOL
588 B
TypeScript

export type PickersTimezone = 'default' | 'system' | 'UTC' | string;
export interface TimezoneProps {
/**
* Choose which timezone to use for the value.
* Example: "default", "system", "UTC", "America/New_York".
* If you pass values from other timezones to some props, they will be converted to this timezone before being used.
* @see See the {@link https://mui.com/x/react-date-pickers/timezone/ timezones documentation} for more details.
* @default The timezone of the `value` or `defaultValue` prop is defined, 'default' otherwise.
*/
timezone?: PickersTimezone;
}