diff options
Diffstat (limited to 'cli/dts/lib.esnext.intl.d.ts')
-rw-r--r-- | cli/dts/lib.esnext.intl.d.ts | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/cli/dts/lib.esnext.intl.d.ts b/cli/dts/lib.esnext.intl.d.ts index 175ef85de..ebb42fc37 100644 --- a/cli/dts/lib.esnext.intl.d.ts +++ b/cli/dts/lib.esnext.intl.d.ts @@ -19,14 +19,5 @@ and limitations under the License. declare namespace Intl { - type NumberFormatPartTypes = "compact" | "currency" | "decimal" | "exponentInteger" | "exponentMinusSign" | "exponentSeparator" | "fraction" | "group" | "infinity" | "integer" | "literal" | "minusSign" | "nan" | "plusSign" | "percentSign" | "unit" | "unknown"; - - interface NumberFormatPart { - type: NumberFormatPartTypes; - value: string; - } - - interface NumberFormat { - formatToParts(number?: number | bigint): NumberFormatPart[]; - } + // Empty for now } |