Files
copilot-toolbox-template-121/node_modules/@ant-design/pro-utils/lib/parseValueToMoment/index.d.ts
2026-01-16 02:20:32 +00:00

5 lines
252 B
TypeScript

import dayjs from 'dayjs';
type DateValue = dayjs.Dayjs | dayjs.Dayjs[] | string | string[] | number | number[];
export declare const parseValueToDay: (value: DateValue, formatter?: string) => dayjs.Dayjs | dayjs.Dayjs[] | null | undefined;
export {};