File tree 2 files changed +10
-8
lines changed
2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -24,4 +24,13 @@ declare namespace Intl {
24
24
roundingIncrement : 1 | 2 | 5 | 10 | 20 | 25 | 50 | 100 | 200 | 250 | 500 | 1000 | 2000 | 2500 | 5000 ;
25
25
trailingZeroDisplay : "auto" | "stripIfInteger" ;
26
26
}
27
+
28
+ interface NumberRangeFormatPart extends NumberFormatPart {
29
+ source : "startRange" | "endRange" | "shared" ;
30
+ }
31
+
32
+ interface NumberFormat {
33
+ formatRange ( start : number | bigint , end : number | bigint ) : string ;
34
+ formatRangeToParts ( start : number | bigint , end : number | bigint ) : NumberRangeFormatPart [ ] ;
35
+ }
27
36
}
Original file line number Diff line number Diff line change 1
1
declare namespace Intl {
2
- interface NumberRangeFormatPart extends NumberFormatPart {
3
- source : "startRange" | "endRange" | "shared" ;
4
- }
5
-
6
- interface NumberFormat {
7
- formatRange ( start : number | bigint , end : number | bigint ) : string ;
8
- formatRangeToParts ( start : number | bigint , end : number | bigint ) : NumberRangeFormatPart [ ] ;
9
- }
2
+ // Empty
10
3
}
You can’t perform that action at this time.
0 commit comments