UNPKG

@phensley/cldr-core

Version:
15 lines (14 loc) 544 B
import { CalendarDateFields } from './calendar'; import { GregorianDate } from './gregorian'; /** * Gregorian calendar with ISO-8601 first day of week and minimum days in week. * * type: iso8601 */ export declare class ISO8601Date extends GregorianDate { private constructor(); add(fields: CalendarDateFields): ISO8601Date; toString(): string; static fromUnixEpoch(epoch: number, zoneId: string, firstDay: number, minDays: number): ISO8601Date; protected initFromUnixEpoch(epoch: number, zoneId: string): ISO8601Date; }