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

7 lines
No EOL
618 B
TypeScript

import type { PickerValueManager } from "../models/index.js";
import { DateValidationError, TimeValidationError, DateTimeValidationError } from "../../models/index.js";
import type { FieldValueManager } from "../hooks/useField/index.js";
import { PickerValue } from "../models/index.js";
export type SingleItemPickerValueManager<TError extends DateValidationError | TimeValidationError | DateTimeValidationError = any> = PickerValueManager<PickerValue, TError>;
export declare const singleItemValueManager: SingleItemPickerValueManager;
export declare const singleItemFieldValueManager: FieldValueManager<PickerValue>;