UNPKG

@fe6/water-pro

Version:

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

11 lines (10 loc) 432 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 declare function generateShowHourMinuteSecond(format: string): { showHour: boolean; showMinute: boolean; showSecond: boolean; }; export {};