Files
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

6 lines
582 B
TypeScript

import { MuiPickersAdapter } from '../models';
export declare const getDisplayDate: <TDate>(utils: MuiPickersAdapter<TDate>, rawValue: any, inputFormat: string) => string;
export declare function getMaskFromCurrentFormat(mask: string | undefined, format: string, acceptRegex: RegExp, utils: MuiPickersAdapter<any>): string;
export declare function checkMaskIsValidForCurrentFormat(mask: string, format: string, acceptRegex: RegExp, utils: MuiPickersAdapter<any>): boolean;
export declare const maskedDateFormatter: (mask: string, acceptRegexp: RegExp) => (value: string) => string;