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.
2 parents 247d582 + 6ee1890 commit 75e6071Copy full SHA for 75e6071
src/lib/intl.d.ts
@@ -41,6 +41,11 @@ declare module Intl {
41
currency?: string;
42
currencyDisplay?: string;
43
useGrouping?: boolean;
44
+ minimumintegerDigits?: number;
45
+ minimumFractionDigits?: number;
46
+ maximumFractionDigits?: number;
47
+ minimumSignificantDigits?: number;
48
+ maximumSignificantDigits?: number;
49
}
50
51
interface ResolvedNumberFormatOptions {
@@ -103,7 +108,7 @@ declare module Intl {
103
108
104
109
105
110
interface DateTimeFormat {
106
- format(date: number): string;
111
+ format(date?: Date | number): string;
107
112
resolvedOptions(): ResolvedDateTimeFormatOptions;
113
114
var DateTimeFormat: {
0 commit comments