UNPKG

reablocks

Version:
11 lines (10 loc) 289 B
export interface SafeFormatOptions { format: string; includeSeconds?: boolean; addSuffix?: boolean; } export declare function safeFormat(date: Date | string | number | null | undefined, options: SafeFormatOptions): { dateObj: any; formatted: any; relative: any; };