mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 22:30:56 +00:00
8 lines
302 B
TypeScript
8 lines
302 B
TypeScript
import { DateStringValue } from '../../types';
|
|
interface GetDefaultClampedDate {
|
|
minDate: DateStringValue | Date | undefined;
|
|
maxDate: DateStringValue | Date | undefined;
|
|
}
|
|
export declare function getDefaultClampedDate({ minDate, maxDate, }: GetDefaultClampedDate): DateStringValue;
|
|
export {};
|