jtc-utils
Version:
Utilities for Japanese Traditional Companies
12 lines • 350 B
TypeScript
declare type DateFormatPart = {
type: "quoted" | "literal" | "pattern";
text: string;
};
export declare class DateFormat {
static get(format: string, locale?: string): DateFormat;
parts: Array<DateFormatPart>;
constructor(parts: Array<DateFormatPart>);
toString(): string;
}
export {};
//# sourceMappingURL=DateFormat.d.ts.map