1
0
Fork 0

Added Statistics calculation

Statistics now show calculated values
This commit is contained in:
Techognito 2025-09-04 17:30:00 +02:00
parent fe87374e47
commit fc0f69dacb
2147 changed files with 141321 additions and 39 deletions

View file

@ -0,0 +1,18 @@
import type { MakeRequired } from '@mui/x-internals/types';
import { Validator } from "./useValidation.js";
import { BaseTimeValidationProps, TimeValidationProps } from "../internals/models/validation.js";
import { TimeValidationError } from "../models/index.js";
import { PickerValue } from "../internals/models/index.js";
/**
* Validation props used by the Time Picker, Time Field and Clock components.
*/
export interface ExportedValidateTimeProps extends BaseTimeValidationProps, TimeValidationProps {}
/**
* Validation props as received by the validateTime method.
*/
export interface ValidateTimeProps extends MakeRequired<ExportedValidateTimeProps, ValidateTimePropsToDefault> {}
/**
* Name of the props that should be defaulted before being passed to the validateTime method.
*/
export type ValidateTimePropsToDefault = keyof BaseTimeValidationProps;
export declare const validateTime: Validator<PickerValue, TimeValidationError, ValidateTimeProps>;