Skip to content

Commit 70a5d27

Browse files
committed
Move notation to es2020.intl.d.ts
1 parent 7f3499a commit 70a5d27

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

src/lib/es2020.intl.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,4 +261,12 @@ declare namespace Intl {
261261
options?: RelativeTimeFormatOptions,
262262
): BCP47LanguageTag[];
263263
};
264+
265+
interface NumberFormatOptions {
266+
notation?: string;
267+
}
268+
269+
interface ResolvedNumberFormatOptions {
270+
notation?: string;
271+
}
264272
}

src/lib/es5.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4251,7 +4251,6 @@ declare namespace Intl {
42514251
maximumFractionDigits?: number;
42524252
minimumSignificantDigits?: number;
42534253
maximumSignificantDigits?: number;
4254-
notation?: string;
42554254
}
42564255

42574256
interface ResolvedNumberFormatOptions {
@@ -4266,7 +4265,6 @@ declare namespace Intl {
42664265
minimumSignificantDigits?: number;
42674266
maximumSignificantDigits?: number;
42684267
useGrouping: boolean;
4269-
notation?: string;
42704268
}
42714269

42724270
interface NumberFormat {

0 commit comments

Comments
 (0)