We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent debc593 commit 5ff03a0Copy full SHA for 5ff03a0
src/lib/es5.d.ts
@@ -4206,16 +4206,9 @@ declare namespace Intl {
4206
timeZoneName?: string;
4207
}
4208
4209
- type DateTimeFormatPartTypes = "day" | "dayPeriod" | "era" | "hour" | "literal" | "minute" | "month" | "second" | "timeZoneName" | "weekday" | "year";
4210
-
4211
- interface DateTimeFormatPart {
4212
- type: DateTimeFormatPartTypes;
4213
- value: string;
4214
- }
4215
interface DateTimeFormat {
4216
format(date?: Date | number): string;
4217
resolvedOptions(): ResolvedDateTimeFormatOptions;
4218
- formatToParts(date?: Date | number): DateTimeFormatPart[];
4219
4220
var DateTimeFormat: {
4221
new (locales?: string | string[], options?: DateTimeFormatOptions): DateTimeFormat;
0 commit comments