format.d.ts 399 B

12345
  1. import './units/index';
  2. import { Locale } from './locale/locale.class';
  3. export declare function formatDate(date: Date, format: string, locale?: string, isUTC?: boolean, offset?: number): string;
  4. export declare function formatMoment(date: Date, _format: string, locale: Locale, isUTC?: boolean, offset?: number): string;
  5. export declare function expandFormat(_format: string, locale: Locale): string;