@i-novus/ui-core
Version:
Базовые UI компоненты
12 lines (11 loc) • 379 B
TypeScript
import { Dayjs } from 'dayjs';
import { type DateAccuracy } from '../../../dayjs-utils';
type Callback = (value: string | null) => void;
type Config = {
format: string;
max: Dayjs | null;
min: Dayjs | null;
dateAccuracy: DateAccuracy;
};
export declare const useHandleInputCompleteHook: (callback: Callback, config: Config) => (value: string) => void;
export {};