@mantine/dates
Version:
Calendars, date and time pickers based on Mantine components
5 lines (4 loc) • 346 B
TypeScript
import { Dayjs } from 'dayjs';
import { DateStringValue } from '../../types';
export declare function toDateString(value: string | number | Date | Dayjs | undefined | null): DateStringValue | undefined | null;
export declare function toDateTimeString(value: string | number | Date | Dayjs | undefined | null): DateStringValue | undefined | null;