UNPKG

ant-design-vue

Version:

An enterprise-class UI design language and Vue-based implementation

6 lines (5 loc) 284 B
import moment from 'moment'; declare type Value = moment.Moment | undefined | null; declare type Format = string | string[] | undefined | ((val?: Value) => string | string[] | undefined); export declare function formatDate(value: Value, format: Format): string | string[]; export {};