diff options
Diffstat (limited to 'cli/tsc/dts/lib.esnext.intl.d.ts')
-rw-r--r-- | cli/tsc/dts/lib.esnext.intl.d.ts | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cli/tsc/dts/lib.esnext.intl.d.ts b/cli/tsc/dts/lib.esnext.intl.d.ts index 4f1cee2f5..c02e8b816 100644 --- a/cli/tsc/dts/lib.esnext.intl.d.ts +++ b/cli/tsc/dts/lib.esnext.intl.d.ts @@ -17,12 +17,12 @@ and limitations under the License. /// <reference no-default-lib="true"/> declare namespace Intl { - interface NumberRangeFormatPart extends NumberFormatPart { - source: "startRange" | "endRange" | "shared" - } + interface NumberRangeFormatPart extends NumberFormatPart { + source: "startRange" | "endRange" | "shared"; + } - interface NumberFormat { - formatRange(start: number | bigint, end: number | bigint): string; - formatRangeToParts(start: number | bigint, end: number | bigint): NumberRangeFormatPart[]; - } + interface NumberFormat { + formatRange(start: number | bigint, end: number | bigint): string; + formatRangeToParts(start: number | bigint, end: number | bigint): NumberRangeFormatPart[]; + } } |