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