@formatjs/ecma402-abstract 3.0.6 → 3.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/262.d.ts +55 -55
- package/262.js +322 -327
- package/CanonicalizeLocaleList.d.ts +3 -3
- package/CanonicalizeLocaleList.js +5 -5
- package/CanonicalizeTimeZoneName.d.ts +13 -6
- package/CanonicalizeTimeZoneName.js +88 -15
- package/CoerceOptionsToObject.d.ts +4 -4
- package/CoerceOptionsToObject.js +9 -9
- package/DefaultNumberOption.d.ts +6 -6
- package/DefaultNumberOption.js +15 -15
- package/GetNumberOption.d.ts +5 -9
- package/GetNumberOption.js +10 -10
- package/GetOption.d.ts +12 -8
- package/GetOption.js +28 -28
- package/GetOptionsObject.d.ts +4 -4
- package/GetOptionsObject.js +11 -11
- package/GetStringOrBooleanOption.d.ts +4 -10
- package/GetStringOrBooleanOption.js +28 -28
- package/IsSanctionedSimpleUnitIdentifier.d.ts +8 -6
- package/IsSanctionedSimpleUnitIdentifier.js +53 -53
- package/IsValidTimeZoneName.d.ts +15 -7
- package/IsValidTimeZoneName.js +69 -15
- package/IsWellFormedCurrencyCode.d.ts +2 -2
- package/IsWellFormedCurrencyCode.js +15 -15
- package/IsWellFormedUnitIdentifier.d.ts +3 -3
- package/IsWellFormedUnitIdentifier.js +21 -22
- package/NumberFormat/ApplyUnsignedRoundingMode.d.ts +2 -2
- package/NumberFormat/ApplyUnsignedRoundingMode.js +31 -31
- package/NumberFormat/CollapseNumberRange.d.ts +6 -6
- package/NumberFormat/CollapseNumberRange.js +47 -47
- package/NumberFormat/ComputeExponent.d.ts +8 -8
- package/NumberFormat/ComputeExponent.js +48 -58
- package/NumberFormat/ComputeExponentForMagnitude.d.ts +6 -6
- package/NumberFormat/ComputeExponentForMagnitude.js +64 -63
- package/NumberFormat/CurrencyDigits.d.ts +3 -3
- package/NumberFormat/CurrencyDigits.js +5 -8
- package/NumberFormat/FormatApproximately.d.ts +3 -3
- package/NumberFormat/FormatApproximately.js +10 -6
- package/NumberFormat/FormatNumeric.d.ts +2 -2
- package/NumberFormat/FormatNumeric.js +4 -3
- package/NumberFormat/FormatNumericRange.d.ts +6 -6
- package/NumberFormat/FormatNumericRange.js +7 -9
- package/NumberFormat/FormatNumericRangeToParts.d.ts +6 -6
- package/NumberFormat/FormatNumericRangeToParts.js +12 -14
- package/NumberFormat/FormatNumericToParts.d.ts +3 -3
- package/NumberFormat/FormatNumericToParts.js +12 -12
- package/NumberFormat/FormatNumericToString.d.ts +7 -7
- package/NumberFormat/FormatNumericToString.js +79 -81
- package/NumberFormat/GetUnsignedRoundingMode.d.ts +1 -1
- package/NumberFormat/GetUnsignedRoundingMode.js +25 -24
- package/NumberFormat/InitializeNumberFormat.d.ts +10 -10
- package/NumberFormat/InitializeNumberFormat.js +83 -64
- package/NumberFormat/PartitionNumberPattern.d.ts +4 -4
- package/NumberFormat/PartitionNumberPattern.js +112 -123
- package/NumberFormat/PartitionNumberRangePattern.d.ts +6 -6
- package/NumberFormat/PartitionNumberRangePattern.js +41 -38
- package/NumberFormat/SetNumberFormatDigitOptions.d.ts +3 -3
- package/NumberFormat/SetNumberFormatDigitOptions.js +185 -174
- package/NumberFormat/SetNumberFormatUnitOptions.d.ts +3 -3
- package/NumberFormat/SetNumberFormatUnitOptions.js +62 -48
- package/NumberFormat/ToRawFixed.d.ts +7 -7
- package/NumberFormat/ToRawFixed.js +103 -107
- package/NumberFormat/ToRawPrecision.d.ts +7 -7
- package/NumberFormat/ToRawPrecision.js +199 -202
- package/NumberFormat/decimal-cache.d.ts +10 -10
- package/NumberFormat/decimal-cache.js +13 -13
- package/NumberFormat/digit-mapping.generated.js +781 -781
- package/NumberFormat/format_to_parts.d.ts +24 -20
- package/NumberFormat/format_to_parts.js +446 -420
- package/PartitionPattern.d.ts +6 -6
- package/PartitionPattern.js +33 -33
- package/SupportedLocales.d.ts +6 -6
- package/SupportedLocales.js +17 -17
- package/ToIntlMathematicalValue.d.ts +1 -1
- package/ToIntlMathematicalValue.js +24 -25
- package/constants.d.ts +1 -1
- package/constants.js +4 -4
- package/data.d.ts +1 -1
- package/data.js +4 -11
- package/index.d.ts +47 -47
- package/index.js +45 -45
- package/package.json +3 -3
- package/regex.generated.d.ts +1 -0
- package/regex.generated.js +1 -1
- package/types/core.d.ts +5 -5
- package/types/date-time.d.ts +123 -128
- package/types/date-time.js +6 -6
- package/types/displaynames.d.ts +55 -55
- package/types/displaynames.js +1 -1
- package/types/list.d.ts +11 -11
- package/types/list.js +1 -1
- package/types/number.d.ts +151 -137
- package/types/number.js +2 -1
- package/types/plural-rules.d.ts +11 -11
- package/types/plural-rules.js +2 -1
- package/types/relative-time.d.ts +26 -32
- package/types/relative-time.js +2 -1
- package/utils.d.ts +40 -14
- package/utils.js +63 -116
package/types/date-time.d.ts
CHANGED
|
@@ -1,149 +1,144 @@
|
|
|
1
|
-
export type Formats = Pick<Intl.DateTimeFormatOptions,
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
export type Formats = Pick<Intl.DateTimeFormatOptions, "weekday" | "era" | "year" | "month" | "day" | "dayPeriod" | "hour" | "minute" | "second" | "timeZoneName"> & {
|
|
2
|
+
fractionalSecondDigits?: 1 | 2 | 3;
|
|
3
|
+
hour12?: boolean;
|
|
4
|
+
pattern: string;
|
|
5
|
+
pattern12: string;
|
|
6
|
+
skeleton: string;
|
|
7
|
+
rawPattern: string;
|
|
8
|
+
rangePatterns: Record<TABLE_2 | "default", RangePatterns>;
|
|
9
|
+
rangePatterns12: Record<TABLE_2 | "default", RangePatterns>;
|
|
10
10
|
};
|
|
11
11
|
export interface IntlDateTimeFormatInternal {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
12
|
+
locale: string;
|
|
13
|
+
dataLocale: string;
|
|
14
|
+
calendar?: string;
|
|
15
|
+
dateStyle?: "full" | "long" | "medium" | "short";
|
|
16
|
+
timeStyle?: "full" | "long" | "medium" | "short";
|
|
17
|
+
weekday: "narrow" | "short" | "long";
|
|
18
|
+
era: "narrow" | "short" | "long";
|
|
19
|
+
year: "2-digit" | "numeric";
|
|
20
|
+
month: "2-digit" | "numeric" | "narrow" | "short" | "long";
|
|
21
|
+
day: "2-digit" | "numeric";
|
|
22
|
+
dayPeriod: "narrow" | "short" | "long";
|
|
23
|
+
hour: "2-digit" | "numeric";
|
|
24
|
+
minute: "2-digit" | "numeric";
|
|
25
|
+
second: "2-digit" | "numeric";
|
|
26
|
+
timeZoneName: "short" | "long" | "shortOffset" | "longOffset" | "shortGeneric" | "longGeneric";
|
|
27
|
+
fractionalSecondDigits?: 1 | 2 | 3;
|
|
28
|
+
hourCycle: string;
|
|
29
|
+
numberingSystem: string;
|
|
30
|
+
timeZone: string;
|
|
31
|
+
pattern: string;
|
|
32
|
+
format: Formats;
|
|
33
|
+
rangePatterns: Record<TABLE_2 | "default", RangePatterns>;
|
|
34
|
+
boundFormat?: Intl.DateTimeFormat["format"];
|
|
35
35
|
}
|
|
36
36
|
export interface RangePatternPart<T extends RangePatternType = RangePatternType> {
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
source: T;
|
|
38
|
+
pattern: string;
|
|
39
39
|
}
|
|
40
|
-
export type RangePatterns = Pick<Intl.DateTimeFormatOptions,
|
|
41
|
-
|
|
42
|
-
|
|
40
|
+
export type RangePatterns = Pick<Intl.DateTimeFormatOptions, "weekday" | "era" | "year" | "month" | "day" | "hour" | "minute" | "second" | "timeZoneName"> & {
|
|
41
|
+
hour12?: boolean;
|
|
42
|
+
patternParts: Array<RangePatternPart>;
|
|
43
43
|
};
|
|
44
44
|
export declare enum RangePatternType {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
45
|
+
startRange = "startRange",
|
|
46
|
+
shared = "shared",
|
|
47
|
+
endRange = "endRange"
|
|
48
48
|
}
|
|
49
|
-
export type TABLE_6 =
|
|
50
|
-
export type TABLE_2 =
|
|
49
|
+
export type TABLE_6 = "weekday" | "era" | "year" | "month" | "day" | "dayPeriod" | "hour" | "minute" | "second" | "fractionalSecondDigits" | "timeZoneName";
|
|
50
|
+
export type TABLE_2 = "era" | "year" | "month" | "day" | "dayPeriod" | "ampm" | "hour" | "minute" | "second" | "fractionalSecondDigits";
|
|
51
51
|
export type TimeZoneNameData = Record<string, {
|
|
52
|
-
|
|
53
|
-
|
|
52
|
+
long?: [string, string];
|
|
53
|
+
short?: [string, string];
|
|
54
54
|
}>;
|
|
55
55
|
export interface EraData {
|
|
56
|
-
|
|
57
|
-
|
|
56
|
+
BC: string;
|
|
57
|
+
AD: string;
|
|
58
58
|
}
|
|
59
59
|
export interface DateTimeFormatLocaleInternalData {
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
60
|
+
am: string;
|
|
61
|
+
pm: string;
|
|
62
|
+
weekday: {
|
|
63
|
+
narrow: string[];
|
|
64
|
+
long: string[];
|
|
65
|
+
short: string[];
|
|
66
|
+
};
|
|
67
|
+
era: {
|
|
68
|
+
narrow: EraData;
|
|
69
|
+
long: EraData;
|
|
70
|
+
short: EraData;
|
|
71
|
+
};
|
|
72
|
+
month: {
|
|
73
|
+
narrow: string[];
|
|
74
|
+
long: string[];
|
|
75
|
+
short: string[];
|
|
76
|
+
};
|
|
77
|
+
/**
|
|
78
|
+
* Stand-alone month names (used when month appears without other date fields)
|
|
79
|
+
* Falls back to format month if not provided
|
|
80
|
+
*/
|
|
81
|
+
monthStandalone?: {
|
|
82
|
+
narrow: string[];
|
|
83
|
+
long: string[];
|
|
84
|
+
short: string[];
|
|
85
|
+
};
|
|
86
|
+
timeZoneName: TimeZoneNameData;
|
|
87
|
+
/**
|
|
88
|
+
* So we can construct GMT+08:00
|
|
89
|
+
*/
|
|
90
|
+
gmtFormat: string;
|
|
91
|
+
/**
|
|
92
|
+
* So we can construct GMT+08:00
|
|
93
|
+
*/
|
|
94
|
+
hourFormat: string;
|
|
95
|
+
hourCycle: string;
|
|
96
|
+
dateFormat: {
|
|
97
|
+
full: Formats;
|
|
98
|
+
long: Formats;
|
|
99
|
+
medium: Formats;
|
|
100
|
+
short: Formats;
|
|
101
|
+
};
|
|
102
|
+
timeFormat: {
|
|
103
|
+
full: Formats;
|
|
104
|
+
long: Formats;
|
|
105
|
+
medium: Formats;
|
|
106
|
+
short: Formats;
|
|
107
|
+
};
|
|
108
|
+
dateTimeFormat: {
|
|
109
|
+
full: string;
|
|
110
|
+
long: string;
|
|
111
|
+
medium: string;
|
|
112
|
+
short: string;
|
|
113
|
+
};
|
|
114
|
+
/**
|
|
115
|
+
* Interval format fallback pattern from CLDR (e.g., "{0} – {1}" for English, "{0}~{1}" for Japanese)
|
|
116
|
+
* Used when no specific interval format is available for a given skeleton
|
|
117
|
+
*/
|
|
118
|
+
intervalFormatFallback: string;
|
|
119
|
+
formats: Record<string, Formats[]>;
|
|
120
|
+
nu: string[];
|
|
121
|
+
hc: string[];
|
|
122
|
+
ca: string[];
|
|
123
123
|
}
|
|
124
124
|
export type IntervalFormatsData = {
|
|
125
|
-
|
|
125
|
+
intervalFormatFallback: string;
|
|
126
126
|
} & Record<string, Record<string, string>>;
|
|
127
|
-
export interface DateTimeFormat extends Omit<Intl.DateTimeFormat,
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
127
|
+
export interface DateTimeFormat extends Omit<Intl.DateTimeFormat, "resolvedOptions" | "formatRange" | "formatRangeToParts" | "formatToParts"> {
|
|
128
|
+
resolvedOptions(): ResolvedDateTimeFormatOptions;
|
|
129
|
+
formatToParts(date?: Date | number): IntlDateTimeFormatPart[];
|
|
130
|
+
formatRange(startDate: number | Date, endDate: number | Date): string;
|
|
131
|
+
formatRangeToParts(startDate: number | Date, endDate: number | Date): IntlDateTimeFormatPart[];
|
|
132
132
|
}
|
|
133
133
|
export interface ResolvedDateTimeFormatOptions extends Intl.ResolvedDateTimeFormatOptions {
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
134
|
+
dateStyle?: "full" | "long" | "medium" | "short";
|
|
135
|
+
timeStyle?: "full" | "long" | "medium" | "short";
|
|
136
|
+
numberingSystem: string;
|
|
137
137
|
}
|
|
138
|
-
export type UnpackedZoneData = [
|
|
139
|
-
|
|
140
|
-
string,
|
|
141
|
-
number,
|
|
142
|
-
boolean
|
|
143
|
-
];
|
|
144
|
-
export type IntlDateTimeFormatPartType = Intl.DateTimeFormatPartTypes | 'ampm' | 'relatedYear' | 'yearName' | 'unknown' | 'fractionalSecondDigits';
|
|
138
|
+
export type UnpackedZoneData = [number, string, number, boolean];
|
|
139
|
+
export type IntlDateTimeFormatPartType = Intl.DateTimeFormatPartTypes | "ampm" | "relatedYear" | "yearName" | "unknown" | "fractionalSecondDigits";
|
|
145
140
|
export interface IntlDateTimeFormatPart {
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
141
|
+
type: IntlDateTimeFormatPartType;
|
|
142
|
+
value: string | undefined;
|
|
143
|
+
source?: RangePatternType;
|
|
149
144
|
}
|
package/types/date-time.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
1
|
+
export let RangePatternType = /* @__PURE__ */ function(RangePatternType) {
|
|
2
|
+
RangePatternType["startRange"] = "startRange";
|
|
3
|
+
RangePatternType["shared"] = "shared";
|
|
4
|
+
RangePatternType["endRange"] = "endRange";
|
|
5
|
+
return RangePatternType;
|
|
6
|
+
}({});
|
package/types/displaynames.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { LocaleData } from
|
|
1
|
+
import { type LocaleData } from "./core.js";
|
|
2
2
|
type LanguageTag = string;
|
|
3
3
|
type RegionCode = string;
|
|
4
4
|
type ScriptCode = string;
|
|
@@ -6,60 +6,60 @@ type CurrencyCode = string;
|
|
|
6
6
|
type CalendarCode = string;
|
|
7
7
|
type DateTimeFieldCode = string;
|
|
8
8
|
export interface DisplayNamesData {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
9
|
+
/**
|
|
10
|
+
* Note that for style fields, `short` and `narrow` might not exist.
|
|
11
|
+
* At runtime, the fallback order will be narrow -> short -> long.
|
|
12
|
+
*/
|
|
13
|
+
types: {
|
|
14
|
+
/**
|
|
15
|
+
* Maps language subtag like `zh-CN` to their display names.
|
|
16
|
+
*/
|
|
17
|
+
language: {
|
|
18
|
+
dialect: {
|
|
19
|
+
narrow: Record<LanguageTag, string>;
|
|
20
|
+
short: Record<LanguageTag, string>;
|
|
21
|
+
long: Record<LanguageTag, string>;
|
|
22
|
+
};
|
|
23
|
+
standard: {
|
|
24
|
+
narrow: Record<LanguageTag, string>;
|
|
25
|
+
short: Record<LanguageTag, string>;
|
|
26
|
+
long: Record<LanguageTag, string>;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
region: {
|
|
30
|
+
narrow: Record<RegionCode, string>;
|
|
31
|
+
short: Record<RegionCode, string>;
|
|
32
|
+
long: Record<RegionCode, string>;
|
|
33
|
+
};
|
|
34
|
+
script: {
|
|
35
|
+
narrow: Record<ScriptCode, string>;
|
|
36
|
+
short: Record<ScriptCode, string>;
|
|
37
|
+
long: Record<ScriptCode, string>;
|
|
38
|
+
};
|
|
39
|
+
currency: {
|
|
40
|
+
narrow: Record<CurrencyCode, string>;
|
|
41
|
+
short: Record<CurrencyCode, string>;
|
|
42
|
+
long: Record<CurrencyCode, string>;
|
|
43
|
+
};
|
|
44
|
+
calendar: {
|
|
45
|
+
narrow: Record<CalendarCode, string>;
|
|
46
|
+
short: Record<CalendarCode, string>;
|
|
47
|
+
long: Record<CalendarCode, string>;
|
|
48
|
+
};
|
|
49
|
+
dateTimeField: {
|
|
50
|
+
narrow: Record<DateTimeFieldCode, string>;
|
|
51
|
+
short: Record<DateTimeFieldCode, string>;
|
|
52
|
+
long: Record<DateTimeFieldCode, string>;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* Not in spec, but we need this to display both language and region in display name.
|
|
57
|
+
* e.g. zh-Hans-SG + "{0}({1})" -> 简体中文(新加坡)
|
|
58
|
+
* Here {0} is replaced by language display name and {1} is replaced by region display name.
|
|
59
|
+
*/
|
|
60
|
+
patterns: {
|
|
61
|
+
locale: string;
|
|
62
|
+
};
|
|
63
63
|
}
|
|
64
64
|
export type DisplayNamesLocaleData = LocaleData<DisplayNamesData>;
|
|
65
65
|
export {};
|
package/types/displaynames.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
import "./core.js";
|
package/types/list.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { LocaleData } from
|
|
1
|
+
import { type LocaleData } from "./core.js";
|
|
2
2
|
export type ListPatternLocaleData = LocaleData<ListPatternFieldsData>;
|
|
3
3
|
export interface ListPatternFieldsData {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
conjunction?: ListPatternData;
|
|
5
|
+
disjunction?: ListPatternData;
|
|
6
|
+
unit?: ListPatternData;
|
|
7
7
|
}
|
|
8
8
|
export interface ListPattern {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
9
|
+
start: string;
|
|
10
|
+
middle: string;
|
|
11
|
+
end: string;
|
|
12
|
+
pair: string;
|
|
13
13
|
}
|
|
14
14
|
export interface ListPatternData {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
long: ListPattern;
|
|
16
|
+
short?: ListPattern;
|
|
17
|
+
narrow?: ListPattern;
|
|
18
18
|
}
|
package/types/list.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
import "./core.js";
|