UNPKG

local-date

Version:

Replacement of Date for dealing with dates independent of time or timezone.

11 lines (10 loc) 279 B
declare module 'local-date' { export class LocalDate extends Date { static ISO_DATE_FORMAT: RegExp; static test(iso: string): boolean; } export class LocalDateTime extends Date { static ISO_DATE_TIME_FORMAT: RegExp; static test(iso: string): boolean; } }