UNPKG

zent

Version:

一套前端设计语言和基于React的实现

10 lines (9 loc) 681 B
import { IDisabledDateFunc, IDisabledTime, IDisabledTimeOption, IRangeDisabledDateFunc } from './types'; export declare const disabledTimeWithMin: (date: Date, min: Date) => IDisabledTimeOption; export declare const disabledTimeWithMax: (date: Date, max: Date) => IDisabledTimeOption; export declare const disabledTimeWithRange: (date: Date, range: [Date | null, Date | null]) => IDisabledTimeOption; export declare const disabledDateWithRange: (range: [Date | null, Date | null]) => IDisabledDateFunc; export declare const getDisabledDateAndTimeWithRangeProps: (range: [Date | null, Date | null]) => { disabledDate: IRangeDisabledDateFunc; disabledTime: IDisabledTime; };