mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 16:40:57 +00:00
13 lines
475 B
TypeScript
13 lines
475 B
TypeScript
import { DateStringValue } from '../../../types';
|
|
interface GetMinTimeInput {
|
|
minDate: DateStringValue | Date | undefined;
|
|
value: DateStringValue | null;
|
|
}
|
|
export declare function getMinTime({ minDate, value }: GetMinTimeInput): string | undefined;
|
|
interface GetMaxTimeInput {
|
|
maxDate: DateStringValue | Date | undefined;
|
|
value: DateStringValue | null;
|
|
}
|
|
export declare function getMaxTime({ maxDate, value }: GetMaxTimeInput): string | undefined;
|
|
export {};
|