UNPKG

@weiliang79/ubl-builder

Version:

Tool to create xml documents with UBL 2.1 standard

24 lines 474 B
interface Options { timezone?: string; } /** * * @param ts * @param options */ declare function decomposeTime(ts: number, options?: Options): { year: any; monthStr: string; month: string; week: any; dayOfWeek: any; dayOfWeekStr: string; dayOfYear: any; dayOfMonth: string; hourOfDay: string; minute: string; second: string; milliseconds: string; }; export { decomposeTime }; //# sourceMappingURL=dateFormatter.d.ts.map