@astrojs/cloudflare 8.0.2 → 9.0.0
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/dist/entrypoints/image-endpoint.d.ts +1 -0
- package/dist/entrypoints/image-endpoint.js +1 -0
- package/dist/entrypoints/server.advanced.js +1 -1
- package/dist/entrypoints/server.directory.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +54 -27
- package/dist/utils/deduplicatePatterns.js +8 -6
- package/dist/utils/image-config.js +6 -0
- package/dist/utils/local-runtime.d.ts +282 -282
- package/dist/utils/sharpBundlePatch.d.ts +2 -0
- package/dist/utils/sharpBundlePatch.js +18 -0
- package/package.json +4 -3
|
@@ -89,7 +89,7 @@ declare class LocalRuntime {
|
|
|
89
89
|
toString: () => string;
|
|
90
90
|
toDateString: () => string;
|
|
91
91
|
toTimeString: () => string;
|
|
92
|
-
toLocaleString: (() => string) & ((
|
|
92
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
93
93
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
94
94
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
95
95
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -160,7 +160,7 @@ declare class LocalRuntime {
|
|
|
160
160
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
161
161
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
162
162
|
} | undefined) => string);
|
|
163
|
-
toLocaleDateString: (() => string) & ((
|
|
163
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
164
164
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
165
165
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
166
166
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -231,7 +231,7 @@ declare class LocalRuntime {
|
|
|
231
231
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
232
232
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
233
233
|
} | undefined) => string);
|
|
234
|
-
toLocaleTimeString: (() => string) & ((
|
|
234
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
235
235
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
236
236
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
237
237
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -338,7 +338,7 @@ declare class LocalRuntime {
|
|
|
338
338
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
339
339
|
toUTCString: () => string;
|
|
340
340
|
toISOString: () => string;
|
|
341
|
-
toJSON: (
|
|
341
|
+
toJSON: (key?: any) => string;
|
|
342
342
|
getVarDate: () => {};
|
|
343
343
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
344
344
|
};
|
|
@@ -352,7 +352,7 @@ declare class LocalRuntime {
|
|
|
352
352
|
toString: () => string;
|
|
353
353
|
toDateString: () => string;
|
|
354
354
|
toTimeString: () => string;
|
|
355
|
-
toLocaleString: (() => string) & ((
|
|
355
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
356
356
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
357
357
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
358
358
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -423,7 +423,7 @@ declare class LocalRuntime {
|
|
|
423
423
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
424
424
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
425
425
|
} | undefined) => string);
|
|
426
|
-
toLocaleDateString: (() => string) & ((
|
|
426
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
427
427
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
428
428
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
429
429
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -494,7 +494,7 @@ declare class LocalRuntime {
|
|
|
494
494
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
495
495
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
496
496
|
} | undefined) => string);
|
|
497
|
-
toLocaleTimeString: (() => string) & ((
|
|
497
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
498
498
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
499
499
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
500
500
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -601,7 +601,7 @@ declare class LocalRuntime {
|
|
|
601
601
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
602
602
|
toUTCString: () => string;
|
|
603
603
|
toISOString: () => string;
|
|
604
|
-
toJSON: (
|
|
604
|
+
toJSON: (key?: any) => string;
|
|
605
605
|
getVarDate: () => {};
|
|
606
606
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
607
607
|
} | undefined;
|
|
@@ -628,7 +628,7 @@ declare class LocalRuntime {
|
|
|
628
628
|
toString: () => string;
|
|
629
629
|
toDateString: () => string;
|
|
630
630
|
toTimeString: () => string;
|
|
631
|
-
toLocaleString: (() => string) & ((
|
|
631
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
632
632
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
633
633
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
634
634
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -699,7 +699,7 @@ declare class LocalRuntime {
|
|
|
699
699
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
700
700
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
701
701
|
} | undefined) => string);
|
|
702
|
-
toLocaleDateString: (() => string) & ((
|
|
702
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
703
703
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
704
704
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
705
705
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -770,7 +770,7 @@ declare class LocalRuntime {
|
|
|
770
770
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
771
771
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
772
772
|
} | undefined) => string);
|
|
773
|
-
toLocaleTimeString: (() => string) & ((
|
|
773
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
774
774
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
775
775
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
776
776
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -877,7 +877,7 @@ declare class LocalRuntime {
|
|
|
877
877
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
878
878
|
toUTCString: () => string;
|
|
879
879
|
toISOString: () => string;
|
|
880
|
-
toJSON: (
|
|
880
|
+
toJSON: (key?: any) => string;
|
|
881
881
|
getVarDate: () => {};
|
|
882
882
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
883
883
|
} | undefined;
|
|
@@ -885,7 +885,7 @@ declare class LocalRuntime {
|
|
|
885
885
|
toString: () => string;
|
|
886
886
|
toDateString: () => string;
|
|
887
887
|
toTimeString: () => string;
|
|
888
|
-
toLocaleString: (() => string) & ((
|
|
888
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
889
889
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
890
890
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
891
891
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -956,7 +956,7 @@ declare class LocalRuntime {
|
|
|
956
956
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
957
957
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
958
958
|
} | undefined) => string);
|
|
959
|
-
toLocaleDateString: (() => string) & ((
|
|
959
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
960
960
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
961
961
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
962
962
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -1027,7 +1027,7 @@ declare class LocalRuntime {
|
|
|
1027
1027
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
1028
1028
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
1029
1029
|
} | undefined) => string);
|
|
1030
|
-
toLocaleTimeString: (() => string) & ((
|
|
1030
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
1031
1031
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
1032
1032
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
1033
1033
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -1134,7 +1134,7 @@ declare class LocalRuntime {
|
|
|
1134
1134
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
1135
1135
|
toUTCString: () => string;
|
|
1136
1136
|
toISOString: () => string;
|
|
1137
|
-
toJSON: (
|
|
1137
|
+
toJSON: (key?: any) => string;
|
|
1138
1138
|
getVarDate: () => {};
|
|
1139
1139
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
1140
1140
|
} | undefined;
|
|
@@ -1193,7 +1193,7 @@ declare class LocalRuntime {
|
|
|
1193
1193
|
toString: () => string;
|
|
1194
1194
|
toDateString: () => string;
|
|
1195
1195
|
toTimeString: () => string;
|
|
1196
|
-
toLocaleString: (() => string) & ((
|
|
1196
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
1197
1197
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
1198
1198
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
1199
1199
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -1264,7 +1264,7 @@ declare class LocalRuntime {
|
|
|
1264
1264
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
1265
1265
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
1266
1266
|
} | undefined) => string);
|
|
1267
|
-
toLocaleDateString: (() => string) & ((
|
|
1267
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
1268
1268
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
1269
1269
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
1270
1270
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -1335,7 +1335,7 @@ declare class LocalRuntime {
|
|
|
1335
1335
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
1336
1336
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
1337
1337
|
} | undefined) => string);
|
|
1338
|
-
toLocaleTimeString: (() => string) & ((
|
|
1338
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
1339
1339
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
1340
1340
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
1341
1341
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -1442,7 +1442,7 @@ declare class LocalRuntime {
|
|
|
1442
1442
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
1443
1443
|
toUTCString: () => string;
|
|
1444
1444
|
toISOString: () => string;
|
|
1445
|
-
toJSON: (
|
|
1445
|
+
toJSON: (key?: any) => string;
|
|
1446
1446
|
getVarDate: () => {};
|
|
1447
1447
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
1448
1448
|
};
|
|
@@ -1456,7 +1456,7 @@ declare class LocalRuntime {
|
|
|
1456
1456
|
toString: () => string;
|
|
1457
1457
|
toDateString: () => string;
|
|
1458
1458
|
toTimeString: () => string;
|
|
1459
|
-
toLocaleString: (() => string) & ((
|
|
1459
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
1460
1460
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
1461
1461
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
1462
1462
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -1527,7 +1527,7 @@ declare class LocalRuntime {
|
|
|
1527
1527
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
1528
1528
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
1529
1529
|
} | undefined) => string);
|
|
1530
|
-
toLocaleDateString: (() => string) & ((
|
|
1530
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
1531
1531
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
1532
1532
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
1533
1533
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -1598,7 +1598,7 @@ declare class LocalRuntime {
|
|
|
1598
1598
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
1599
1599
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
1600
1600
|
} | undefined) => string);
|
|
1601
|
-
toLocaleTimeString: (() => string) & ((
|
|
1601
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
1602
1602
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
1603
1603
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
1604
1604
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -1705,7 +1705,7 @@ declare class LocalRuntime {
|
|
|
1705
1705
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
1706
1706
|
toUTCString: () => string;
|
|
1707
1707
|
toISOString: () => string;
|
|
1708
|
-
toJSON: (
|
|
1708
|
+
toJSON: (key?: any) => string;
|
|
1709
1709
|
getVarDate: () => {};
|
|
1710
1710
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
1711
1711
|
} | undefined;
|
|
@@ -1777,7 +1777,7 @@ declare class LocalRuntime {
|
|
|
1777
1777
|
toString: () => string;
|
|
1778
1778
|
toDateString: () => string;
|
|
1779
1779
|
toTimeString: () => string;
|
|
1780
|
-
toLocaleString: (() => string) & ((
|
|
1780
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
1781
1781
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
1782
1782
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
1783
1783
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -1848,7 +1848,7 @@ declare class LocalRuntime {
|
|
|
1848
1848
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
1849
1849
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
1850
1850
|
} | undefined) => string);
|
|
1851
|
-
toLocaleDateString: (() => string) & ((
|
|
1851
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
1852
1852
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
1853
1853
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
1854
1854
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -1919,7 +1919,7 @@ declare class LocalRuntime {
|
|
|
1919
1919
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
1920
1920
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
1921
1921
|
} | undefined) => string);
|
|
1922
|
-
toLocaleTimeString: (() => string) & ((
|
|
1922
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
1923
1923
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
1924
1924
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
1925
1925
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -2026,7 +2026,7 @@ declare class LocalRuntime {
|
|
|
2026
2026
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
2027
2027
|
toUTCString: () => string;
|
|
2028
2028
|
toISOString: () => string;
|
|
2029
|
-
toJSON: (
|
|
2029
|
+
toJSON: (key?: any) => string;
|
|
2030
2030
|
getVarDate: () => {};
|
|
2031
2031
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
2032
2032
|
};
|
|
@@ -2040,7 +2040,7 @@ declare class LocalRuntime {
|
|
|
2040
2040
|
toString: () => string;
|
|
2041
2041
|
toDateString: () => string;
|
|
2042
2042
|
toTimeString: () => string;
|
|
2043
|
-
toLocaleString: (() => string) & ((
|
|
2043
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
2044
2044
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
2045
2045
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
2046
2046
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -2111,7 +2111,7 @@ declare class LocalRuntime {
|
|
|
2111
2111
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
2112
2112
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
2113
2113
|
} | undefined) => string);
|
|
2114
|
-
toLocaleDateString: (() => string) & ((
|
|
2114
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
2115
2115
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
2116
2116
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
2117
2117
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -2182,7 +2182,7 @@ declare class LocalRuntime {
|
|
|
2182
2182
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
2183
2183
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
2184
2184
|
} | undefined) => string);
|
|
2185
|
-
toLocaleTimeString: (() => string) & ((
|
|
2185
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
2186
2186
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
2187
2187
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
2188
2188
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -2289,7 +2289,7 @@ declare class LocalRuntime {
|
|
|
2289
2289
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
2290
2290
|
toUTCString: () => string;
|
|
2291
2291
|
toISOString: () => string;
|
|
2292
|
-
toJSON: (
|
|
2292
|
+
toJSON: (key?: any) => string;
|
|
2293
2293
|
getVarDate: () => {};
|
|
2294
2294
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
2295
2295
|
} | undefined;
|
|
@@ -2315,7 +2315,7 @@ declare class LocalRuntime {
|
|
|
2315
2315
|
toString: () => string;
|
|
2316
2316
|
toDateString: () => string;
|
|
2317
2317
|
toTimeString: () => string;
|
|
2318
|
-
toLocaleString: (() => string) & ((
|
|
2318
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
2319
2319
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
2320
2320
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
2321
2321
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -2386,7 +2386,7 @@ declare class LocalRuntime {
|
|
|
2386
2386
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
2387
2387
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
2388
2388
|
} | undefined) => string);
|
|
2389
|
-
toLocaleDateString: (() => string) & ((
|
|
2389
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
2390
2390
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
2391
2391
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
2392
2392
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -2457,7 +2457,7 @@ declare class LocalRuntime {
|
|
|
2457
2457
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
2458
2458
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
2459
2459
|
} | undefined) => string);
|
|
2460
|
-
toLocaleTimeString: (() => string) & ((
|
|
2460
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
2461
2461
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
2462
2462
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
2463
2463
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -2564,7 +2564,7 @@ declare class LocalRuntime {
|
|
|
2564
2564
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
2565
2565
|
toUTCString: () => string;
|
|
2566
2566
|
toISOString: () => string;
|
|
2567
|
-
toJSON: (
|
|
2567
|
+
toJSON: (key?: any) => string;
|
|
2568
2568
|
getVarDate: () => {};
|
|
2569
2569
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
2570
2570
|
} | undefined;
|
|
@@ -2572,7 +2572,7 @@ declare class LocalRuntime {
|
|
|
2572
2572
|
toString: () => string;
|
|
2573
2573
|
toDateString: () => string;
|
|
2574
2574
|
toTimeString: () => string;
|
|
2575
|
-
toLocaleString: (() => string) & ((
|
|
2575
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
2576
2576
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
2577
2577
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
2578
2578
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -2643,7 +2643,7 @@ declare class LocalRuntime {
|
|
|
2643
2643
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
2644
2644
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
2645
2645
|
} | undefined) => string);
|
|
2646
|
-
toLocaleDateString: (() => string) & ((
|
|
2646
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
2647
2647
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
2648
2648
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
2649
2649
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -2714,7 +2714,7 @@ declare class LocalRuntime {
|
|
|
2714
2714
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
2715
2715
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
2716
2716
|
} | undefined) => string);
|
|
2717
|
-
toLocaleTimeString: (() => string) & ((
|
|
2717
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
2718
2718
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
2719
2719
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
2720
2720
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -2821,7 +2821,7 @@ declare class LocalRuntime {
|
|
|
2821
2821
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
2822
2822
|
toUTCString: () => string;
|
|
2823
2823
|
toISOString: () => string;
|
|
2824
|
-
toJSON: (
|
|
2824
|
+
toJSON: (key?: any) => string;
|
|
2825
2825
|
getVarDate: () => {};
|
|
2826
2826
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
2827
2827
|
} | undefined;
|
|
@@ -2890,7 +2890,7 @@ declare class LocalRuntime {
|
|
|
2890
2890
|
toString: () => string;
|
|
2891
2891
|
toDateString: () => string;
|
|
2892
2892
|
toTimeString: () => string;
|
|
2893
|
-
toLocaleString: (() => string) & ((
|
|
2893
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
2894
2894
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
2895
2895
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
2896
2896
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -2961,7 +2961,7 @@ declare class LocalRuntime {
|
|
|
2961
2961
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
2962
2962
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
2963
2963
|
} | undefined) => string);
|
|
2964
|
-
toLocaleDateString: (() => string) & ((
|
|
2964
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
2965
2965
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
2966
2966
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
2967
2967
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -3032,7 +3032,7 @@ declare class LocalRuntime {
|
|
|
3032
3032
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
3033
3033
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
3034
3034
|
} | undefined) => string);
|
|
3035
|
-
toLocaleTimeString: (() => string) & ((
|
|
3035
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
3036
3036
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
3037
3037
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
3038
3038
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -3139,7 +3139,7 @@ declare class LocalRuntime {
|
|
|
3139
3139
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
3140
3140
|
toUTCString: () => string;
|
|
3141
3141
|
toISOString: () => string;
|
|
3142
|
-
toJSON: (
|
|
3142
|
+
toJSON: (key?: any) => string;
|
|
3143
3143
|
getVarDate: () => {};
|
|
3144
3144
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
3145
3145
|
};
|
|
@@ -3153,7 +3153,7 @@ declare class LocalRuntime {
|
|
|
3153
3153
|
toString: () => string;
|
|
3154
3154
|
toDateString: () => string;
|
|
3155
3155
|
toTimeString: () => string;
|
|
3156
|
-
toLocaleString: (() => string) & ((
|
|
3156
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
3157
3157
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
3158
3158
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
3159
3159
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -3224,7 +3224,7 @@ declare class LocalRuntime {
|
|
|
3224
3224
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
3225
3225
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
3226
3226
|
} | undefined) => string);
|
|
3227
|
-
toLocaleDateString: (() => string) & ((
|
|
3227
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
3228
3228
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
3229
3229
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
3230
3230
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -3295,7 +3295,7 @@ declare class LocalRuntime {
|
|
|
3295
3295
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
3296
3296
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
3297
3297
|
} | undefined) => string);
|
|
3298
|
-
toLocaleTimeString: (() => string) & ((
|
|
3298
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
3299
3299
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
3300
3300
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
3301
3301
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -3402,7 +3402,7 @@ declare class LocalRuntime {
|
|
|
3402
3402
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
3403
3403
|
toUTCString: () => string;
|
|
3404
3404
|
toISOString: () => string;
|
|
3405
|
-
toJSON: (
|
|
3405
|
+
toJSON: (key?: any) => string;
|
|
3406
3406
|
getVarDate: () => {};
|
|
3407
3407
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
3408
3408
|
} | undefined;
|
|
@@ -3446,7 +3446,7 @@ declare class LocalRuntime {
|
|
|
3446
3446
|
toString: () => string;
|
|
3447
3447
|
toDateString: () => string;
|
|
3448
3448
|
toTimeString: () => string;
|
|
3449
|
-
toLocaleString: (() => string) & ((
|
|
3449
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
3450
3450
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
3451
3451
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
3452
3452
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -3517,7 +3517,7 @@ declare class LocalRuntime {
|
|
|
3517
3517
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
3518
3518
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
3519
3519
|
} | undefined) => string);
|
|
3520
|
-
toLocaleDateString: (() => string) & ((
|
|
3520
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
3521
3521
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
3522
3522
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
3523
3523
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -3588,7 +3588,7 @@ declare class LocalRuntime {
|
|
|
3588
3588
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
3589
3589
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
3590
3590
|
} | undefined) => string);
|
|
3591
|
-
toLocaleTimeString: (() => string) & ((
|
|
3591
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
3592
3592
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
3593
3593
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
3594
3594
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -3695,7 +3695,7 @@ declare class LocalRuntime {
|
|
|
3695
3695
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
3696
3696
|
toUTCString: () => string;
|
|
3697
3697
|
toISOString: () => string;
|
|
3698
|
-
toJSON: (
|
|
3698
|
+
toJSON: (key?: any) => string;
|
|
3699
3699
|
getVarDate: () => {};
|
|
3700
3700
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
3701
3701
|
} | undefined;
|
|
@@ -3703,7 +3703,7 @@ declare class LocalRuntime {
|
|
|
3703
3703
|
toString: () => string;
|
|
3704
3704
|
toDateString: () => string;
|
|
3705
3705
|
toTimeString: () => string;
|
|
3706
|
-
toLocaleString: (() => string) & ((
|
|
3706
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
3707
3707
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
3708
3708
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
3709
3709
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -3774,7 +3774,7 @@ declare class LocalRuntime {
|
|
|
3774
3774
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
3775
3775
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
3776
3776
|
} | undefined) => string);
|
|
3777
|
-
toLocaleDateString: (() => string) & ((
|
|
3777
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
3778
3778
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
3779
3779
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
3780
3780
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -3845,7 +3845,7 @@ declare class LocalRuntime {
|
|
|
3845
3845
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
3846
3846
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
3847
3847
|
} | undefined) => string);
|
|
3848
|
-
toLocaleTimeString: (() => string) & ((
|
|
3848
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
3849
3849
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
3850
3850
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
3851
3851
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -3952,7 +3952,7 @@ declare class LocalRuntime {
|
|
|
3952
3952
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
3953
3953
|
toUTCString: () => string;
|
|
3954
3954
|
toISOString: () => string;
|
|
3955
|
-
toJSON: (
|
|
3955
|
+
toJSON: (key?: any) => string;
|
|
3956
3956
|
getVarDate: () => {};
|
|
3957
3957
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
3958
3958
|
} | undefined;
|
|
@@ -3968,7 +3968,7 @@ declare class LocalRuntime {
|
|
|
3968
3968
|
toString: () => string;
|
|
3969
3969
|
toDateString: () => string;
|
|
3970
3970
|
toTimeString: () => string;
|
|
3971
|
-
toLocaleString: (() => string) & ((
|
|
3971
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
3972
3972
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
3973
3973
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
3974
3974
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -4039,7 +4039,7 @@ declare class LocalRuntime {
|
|
|
4039
4039
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
4040
4040
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
4041
4041
|
} | undefined) => string);
|
|
4042
|
-
toLocaleDateString: (() => string) & ((
|
|
4042
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
4043
4043
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
4044
4044
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
4045
4045
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -4110,7 +4110,7 @@ declare class LocalRuntime {
|
|
|
4110
4110
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
4111
4111
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
4112
4112
|
} | undefined) => string);
|
|
4113
|
-
toLocaleTimeString: (() => string) & ((
|
|
4113
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
4114
4114
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
4115
4115
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
4116
4116
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -4217,7 +4217,7 @@ declare class LocalRuntime {
|
|
|
4217
4217
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
4218
4218
|
toUTCString: () => string;
|
|
4219
4219
|
toISOString: () => string;
|
|
4220
|
-
toJSON: (
|
|
4220
|
+
toJSON: (key?: any) => string;
|
|
4221
4221
|
getVarDate: () => {};
|
|
4222
4222
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
4223
4223
|
} | undefined;
|
|
@@ -4294,7 +4294,7 @@ declare class LocalRuntime {
|
|
|
4294
4294
|
toString: () => string;
|
|
4295
4295
|
toDateString: () => string;
|
|
4296
4296
|
toTimeString: () => string;
|
|
4297
|
-
toLocaleString: (() => string) & ((
|
|
4297
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
4298
4298
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
4299
4299
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
4300
4300
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -4365,7 +4365,7 @@ declare class LocalRuntime {
|
|
|
4365
4365
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
4366
4366
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
4367
4367
|
} | undefined) => string);
|
|
4368
|
-
toLocaleDateString: (() => string) & ((
|
|
4368
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
4369
4369
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
4370
4370
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
4371
4371
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -4436,7 +4436,7 @@ declare class LocalRuntime {
|
|
|
4436
4436
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
4437
4437
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
4438
4438
|
} | undefined) => string);
|
|
4439
|
-
toLocaleTimeString: (() => string) & ((
|
|
4439
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
4440
4440
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
4441
4441
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
4442
4442
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -4543,7 +4543,7 @@ declare class LocalRuntime {
|
|
|
4543
4543
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
4544
4544
|
toUTCString: () => string;
|
|
4545
4545
|
toISOString: () => string;
|
|
4546
|
-
toJSON: (
|
|
4546
|
+
toJSON: (key?: any) => string;
|
|
4547
4547
|
getVarDate: () => {};
|
|
4548
4548
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
4549
4549
|
};
|
|
@@ -4557,7 +4557,7 @@ declare class LocalRuntime {
|
|
|
4557
4557
|
toString: () => string;
|
|
4558
4558
|
toDateString: () => string;
|
|
4559
4559
|
toTimeString: () => string;
|
|
4560
|
-
toLocaleString: (() => string) & ((
|
|
4560
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
4561
4561
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
4562
4562
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
4563
4563
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -4628,7 +4628,7 @@ declare class LocalRuntime {
|
|
|
4628
4628
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
4629
4629
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
4630
4630
|
} | undefined) => string);
|
|
4631
|
-
toLocaleDateString: (() => string) & ((
|
|
4631
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
4632
4632
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
4633
4633
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
4634
4634
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -4699,7 +4699,7 @@ declare class LocalRuntime {
|
|
|
4699
4699
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
4700
4700
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
4701
4701
|
} | undefined) => string);
|
|
4702
|
-
toLocaleTimeString: (() => string) & ((
|
|
4702
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
4703
4703
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
4704
4704
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
4705
4705
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -4806,7 +4806,7 @@ declare class LocalRuntime {
|
|
|
4806
4806
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
4807
4807
|
toUTCString: () => string;
|
|
4808
4808
|
toISOString: () => string;
|
|
4809
|
-
toJSON: (
|
|
4809
|
+
toJSON: (key?: any) => string;
|
|
4810
4810
|
getVarDate: () => {};
|
|
4811
4811
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
4812
4812
|
} | undefined;
|
|
@@ -4849,7 +4849,7 @@ declare class LocalRuntime {
|
|
|
4849
4849
|
toString: () => string;
|
|
4850
4850
|
toDateString: () => string;
|
|
4851
4851
|
toTimeString: () => string;
|
|
4852
|
-
toLocaleString: (() => string) & ((
|
|
4852
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
4853
4853
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
4854
4854
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
4855
4855
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -4920,7 +4920,7 @@ declare class LocalRuntime {
|
|
|
4920
4920
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
4921
4921
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
4922
4922
|
} | undefined) => string);
|
|
4923
|
-
toLocaleDateString: (() => string) & ((
|
|
4923
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
4924
4924
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
4925
4925
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
4926
4926
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -4991,7 +4991,7 @@ declare class LocalRuntime {
|
|
|
4991
4991
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
4992
4992
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
4993
4993
|
} | undefined) => string);
|
|
4994
|
-
toLocaleTimeString: (() => string) & ((
|
|
4994
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
4995
4995
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
4996
4996
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
4997
4997
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -5098,7 +5098,7 @@ declare class LocalRuntime {
|
|
|
5098
5098
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
5099
5099
|
toUTCString: () => string;
|
|
5100
5100
|
toISOString: () => string;
|
|
5101
|
-
toJSON: (
|
|
5101
|
+
toJSON: (key?: any) => string;
|
|
5102
5102
|
getVarDate: () => {};
|
|
5103
5103
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
5104
5104
|
} | undefined;
|
|
@@ -5106,7 +5106,7 @@ declare class LocalRuntime {
|
|
|
5106
5106
|
toString: () => string;
|
|
5107
5107
|
toDateString: () => string;
|
|
5108
5108
|
toTimeString: () => string;
|
|
5109
|
-
toLocaleString: (() => string) & ((
|
|
5109
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
5110
5110
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
5111
5111
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
5112
5112
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -5177,7 +5177,7 @@ declare class LocalRuntime {
|
|
|
5177
5177
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
5178
5178
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
5179
5179
|
} | undefined) => string);
|
|
5180
|
-
toLocaleDateString: (() => string) & ((
|
|
5180
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
5181
5181
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
5182
5182
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
5183
5183
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -5248,7 +5248,7 @@ declare class LocalRuntime {
|
|
|
5248
5248
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
5249
5249
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
5250
5250
|
} | undefined) => string);
|
|
5251
|
-
toLocaleTimeString: (() => string) & ((
|
|
5251
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
5252
5252
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
5253
5253
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
5254
5254
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -5355,7 +5355,7 @@ declare class LocalRuntime {
|
|
|
5355
5355
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
5356
5356
|
toUTCString: () => string;
|
|
5357
5357
|
toISOString: () => string;
|
|
5358
|
-
toJSON: (
|
|
5358
|
+
toJSON: (key?: any) => string;
|
|
5359
5359
|
getVarDate: () => {};
|
|
5360
5360
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
5361
5361
|
} | undefined;
|
|
@@ -5371,7 +5371,7 @@ declare class LocalRuntime {
|
|
|
5371
5371
|
toString: () => string;
|
|
5372
5372
|
toDateString: () => string;
|
|
5373
5373
|
toTimeString: () => string;
|
|
5374
|
-
toLocaleString: (() => string) & ((
|
|
5374
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
5375
5375
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
5376
5376
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
5377
5377
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -5442,7 +5442,7 @@ declare class LocalRuntime {
|
|
|
5442
5442
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
5443
5443
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
5444
5444
|
} | undefined) => string);
|
|
5445
|
-
toLocaleDateString: (() => string) & ((
|
|
5445
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
5446
5446
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
5447
5447
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
5448
5448
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -5513,7 +5513,7 @@ declare class LocalRuntime {
|
|
|
5513
5513
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
5514
5514
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
5515
5515
|
} | undefined) => string);
|
|
5516
|
-
toLocaleTimeString: (() => string) & ((
|
|
5516
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
5517
5517
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
5518
5518
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
5519
5519
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -5620,7 +5620,7 @@ declare class LocalRuntime {
|
|
|
5620
5620
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
5621
5621
|
toUTCString: () => string;
|
|
5622
5622
|
toISOString: () => string;
|
|
5623
|
-
toJSON: (
|
|
5623
|
+
toJSON: (key?: any) => string;
|
|
5624
5624
|
getVarDate: () => {};
|
|
5625
5625
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
5626
5626
|
} | undefined;
|
|
@@ -5697,7 +5697,7 @@ declare class LocalRuntime {
|
|
|
5697
5697
|
toString: () => string;
|
|
5698
5698
|
toDateString: () => string;
|
|
5699
5699
|
toTimeString: () => string;
|
|
5700
|
-
toLocaleString: (() => string) & ((
|
|
5700
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
5701
5701
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
5702
5702
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
5703
5703
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -5768,7 +5768,7 @@ declare class LocalRuntime {
|
|
|
5768
5768
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
5769
5769
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
5770
5770
|
} | undefined) => string);
|
|
5771
|
-
toLocaleDateString: (() => string) & ((
|
|
5771
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
5772
5772
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
5773
5773
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
5774
5774
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -5839,7 +5839,7 @@ declare class LocalRuntime {
|
|
|
5839
5839
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
5840
5840
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
5841
5841
|
} | undefined) => string);
|
|
5842
|
-
toLocaleTimeString: (() => string) & ((
|
|
5842
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
5843
5843
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
5844
5844
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
5845
5845
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -5946,7 +5946,7 @@ declare class LocalRuntime {
|
|
|
5946
5946
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
5947
5947
|
toUTCString: () => string;
|
|
5948
5948
|
toISOString: () => string;
|
|
5949
|
-
toJSON: (
|
|
5949
|
+
toJSON: (key?: any) => string;
|
|
5950
5950
|
getVarDate: () => {};
|
|
5951
5951
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
5952
5952
|
};
|
|
@@ -5960,7 +5960,7 @@ declare class LocalRuntime {
|
|
|
5960
5960
|
toString: () => string;
|
|
5961
5961
|
toDateString: () => string;
|
|
5962
5962
|
toTimeString: () => string;
|
|
5963
|
-
toLocaleString: (() => string) & ((
|
|
5963
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
5964
5964
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
5965
5965
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
5966
5966
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -6031,7 +6031,7 @@ declare class LocalRuntime {
|
|
|
6031
6031
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
6032
6032
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
6033
6033
|
} | undefined) => string);
|
|
6034
|
-
toLocaleDateString: (() => string) & ((
|
|
6034
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
6035
6035
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
6036
6036
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
6037
6037
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -6102,7 +6102,7 @@ declare class LocalRuntime {
|
|
|
6102
6102
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
6103
6103
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
6104
6104
|
} | undefined) => string);
|
|
6105
|
-
toLocaleTimeString: (() => string) & ((
|
|
6105
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
6106
6106
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
6107
6107
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
6108
6108
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -6209,7 +6209,7 @@ declare class LocalRuntime {
|
|
|
6209
6209
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
6210
6210
|
toUTCString: () => string;
|
|
6211
6211
|
toISOString: () => string;
|
|
6212
|
-
toJSON: (
|
|
6212
|
+
toJSON: (key?: any) => string;
|
|
6213
6213
|
getVarDate: () => {};
|
|
6214
6214
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
6215
6215
|
} | undefined;
|
|
@@ -6239,7 +6239,7 @@ declare class LocalRuntime {
|
|
|
6239
6239
|
toString: () => string;
|
|
6240
6240
|
toDateString: () => string;
|
|
6241
6241
|
toTimeString: () => string;
|
|
6242
|
-
toLocaleString: (() => string) & ((
|
|
6242
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
6243
6243
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
6244
6244
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
6245
6245
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -6310,7 +6310,7 @@ declare class LocalRuntime {
|
|
|
6310
6310
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
6311
6311
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
6312
6312
|
} | undefined) => string);
|
|
6313
|
-
toLocaleDateString: (() => string) & ((
|
|
6313
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
6314
6314
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
6315
6315
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
6316
6316
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -6381,7 +6381,7 @@ declare class LocalRuntime {
|
|
|
6381
6381
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
6382
6382
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
6383
6383
|
} | undefined) => string);
|
|
6384
|
-
toLocaleTimeString: (() => string) & ((
|
|
6384
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
6385
6385
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
6386
6386
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
6387
6387
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -6488,7 +6488,7 @@ declare class LocalRuntime {
|
|
|
6488
6488
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
6489
6489
|
toUTCString: () => string;
|
|
6490
6490
|
toISOString: () => string;
|
|
6491
|
-
toJSON: (
|
|
6491
|
+
toJSON: (key?: any) => string;
|
|
6492
6492
|
getVarDate: () => {};
|
|
6493
6493
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
6494
6494
|
} | undefined;
|
|
@@ -6568,7 +6568,7 @@ declare class LocalRuntime {
|
|
|
6568
6568
|
toString: () => string;
|
|
6569
6569
|
toDateString: () => string;
|
|
6570
6570
|
toTimeString: () => string;
|
|
6571
|
-
toLocaleString: (() => string) & ((
|
|
6571
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
6572
6572
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
6573
6573
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
6574
6574
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -6639,7 +6639,7 @@ declare class LocalRuntime {
|
|
|
6639
6639
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
6640
6640
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
6641
6641
|
} | undefined) => string);
|
|
6642
|
-
toLocaleDateString: (() => string) & ((
|
|
6642
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
6643
6643
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
6644
6644
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
6645
6645
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -6710,7 +6710,7 @@ declare class LocalRuntime {
|
|
|
6710
6710
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
6711
6711
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
6712
6712
|
} | undefined) => string);
|
|
6713
|
-
toLocaleTimeString: (() => string) & ((
|
|
6713
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
6714
6714
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
6715
6715
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
6716
6716
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -6817,7 +6817,7 @@ declare class LocalRuntime {
|
|
|
6817
6817
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
6818
6818
|
toUTCString: () => string;
|
|
6819
6819
|
toISOString: () => string;
|
|
6820
|
-
toJSON: (
|
|
6820
|
+
toJSON: (key?: any) => string;
|
|
6821
6821
|
getVarDate: () => {};
|
|
6822
6822
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
6823
6823
|
};
|
|
@@ -6831,7 +6831,7 @@ declare class LocalRuntime {
|
|
|
6831
6831
|
toString: () => string;
|
|
6832
6832
|
toDateString: () => string;
|
|
6833
6833
|
toTimeString: () => string;
|
|
6834
|
-
toLocaleString: (() => string) & ((
|
|
6834
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
6835
6835
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
6836
6836
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
6837
6837
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -6902,7 +6902,7 @@ declare class LocalRuntime {
|
|
|
6902
6902
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
6903
6903
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
6904
6904
|
} | undefined) => string);
|
|
6905
|
-
toLocaleDateString: (() => string) & ((
|
|
6905
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
6906
6906
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
6907
6907
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
6908
6908
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -6973,7 +6973,7 @@ declare class LocalRuntime {
|
|
|
6973
6973
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
6974
6974
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
6975
6975
|
} | undefined) => string);
|
|
6976
|
-
toLocaleTimeString: (() => string) & ((
|
|
6976
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
6977
6977
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
6978
6978
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
6979
6979
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -7080,7 +7080,7 @@ declare class LocalRuntime {
|
|
|
7080
7080
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
7081
7081
|
toUTCString: () => string;
|
|
7082
7082
|
toISOString: () => string;
|
|
7083
|
-
toJSON: (
|
|
7083
|
+
toJSON: (key?: any) => string;
|
|
7084
7084
|
getVarDate: () => {};
|
|
7085
7085
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
7086
7086
|
} | undefined;
|
|
@@ -7172,7 +7172,7 @@ declare class LocalRuntime {
|
|
|
7172
7172
|
toString: () => string;
|
|
7173
7173
|
toDateString: () => string;
|
|
7174
7174
|
toTimeString: () => string;
|
|
7175
|
-
toLocaleString: (() => string) & ((
|
|
7175
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
7176
7176
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
7177
7177
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
7178
7178
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -7243,7 +7243,7 @@ declare class LocalRuntime {
|
|
|
7243
7243
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
7244
7244
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
7245
7245
|
} | undefined) => string);
|
|
7246
|
-
toLocaleDateString: (() => string) & ((
|
|
7246
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
7247
7247
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
7248
7248
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
7249
7249
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -7314,7 +7314,7 @@ declare class LocalRuntime {
|
|
|
7314
7314
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
7315
7315
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
7316
7316
|
} | undefined) => string);
|
|
7317
|
-
toLocaleTimeString: (() => string) & ((
|
|
7317
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
7318
7318
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
7319
7319
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
7320
7320
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -7421,7 +7421,7 @@ declare class LocalRuntime {
|
|
|
7421
7421
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
7422
7422
|
toUTCString: () => string;
|
|
7423
7423
|
toISOString: () => string;
|
|
7424
|
-
toJSON: (
|
|
7424
|
+
toJSON: (key?: any) => string;
|
|
7425
7425
|
getVarDate: () => {};
|
|
7426
7426
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
7427
7427
|
};
|
|
@@ -7435,7 +7435,7 @@ declare class LocalRuntime {
|
|
|
7435
7435
|
toString: () => string;
|
|
7436
7436
|
toDateString: () => string;
|
|
7437
7437
|
toTimeString: () => string;
|
|
7438
|
-
toLocaleString: (() => string) & ((
|
|
7438
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
7439
7439
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
7440
7440
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
7441
7441
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -7506,7 +7506,7 @@ declare class LocalRuntime {
|
|
|
7506
7506
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
7507
7507
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
7508
7508
|
} | undefined) => string);
|
|
7509
|
-
toLocaleDateString: (() => string) & ((
|
|
7509
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
7510
7510
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
7511
7511
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
7512
7512
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -7577,7 +7577,7 @@ declare class LocalRuntime {
|
|
|
7577
7577
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
7578
7578
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
7579
7579
|
} | undefined) => string);
|
|
7580
|
-
toLocaleTimeString: (() => string) & ((
|
|
7580
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
7581
7581
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
7582
7582
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
7583
7583
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -7684,7 +7684,7 @@ declare class LocalRuntime {
|
|
|
7684
7684
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
7685
7685
|
toUTCString: () => string;
|
|
7686
7686
|
toISOString: () => string;
|
|
7687
|
-
toJSON: (
|
|
7687
|
+
toJSON: (key?: any) => string;
|
|
7688
7688
|
getVarDate: () => {};
|
|
7689
7689
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
7690
7690
|
} | undefined;
|
|
@@ -7757,7 +7757,7 @@ declare class LocalRuntime {
|
|
|
7757
7757
|
toString: () => string;
|
|
7758
7758
|
toDateString: () => string;
|
|
7759
7759
|
toTimeString: () => string;
|
|
7760
|
-
toLocaleString: (() => string) & ((
|
|
7760
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
7761
7761
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
7762
7762
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
7763
7763
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -7828,7 +7828,7 @@ declare class LocalRuntime {
|
|
|
7828
7828
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
7829
7829
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
7830
7830
|
} | undefined) => string);
|
|
7831
|
-
toLocaleDateString: (() => string) & ((
|
|
7831
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
7832
7832
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
7833
7833
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
7834
7834
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -7899,7 +7899,7 @@ declare class LocalRuntime {
|
|
|
7899
7899
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
7900
7900
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
7901
7901
|
} | undefined) => string);
|
|
7902
|
-
toLocaleTimeString: (() => string) & ((
|
|
7902
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
7903
7903
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
7904
7904
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
7905
7905
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -8006,7 +8006,7 @@ declare class LocalRuntime {
|
|
|
8006
8006
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
8007
8007
|
toUTCString: () => string;
|
|
8008
8008
|
toISOString: () => string;
|
|
8009
|
-
toJSON: (
|
|
8009
|
+
toJSON: (key?: any) => string;
|
|
8010
8010
|
getVarDate: () => {};
|
|
8011
8011
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
8012
8012
|
};
|
|
@@ -8020,7 +8020,7 @@ declare class LocalRuntime {
|
|
|
8020
8020
|
toString: () => string;
|
|
8021
8021
|
toDateString: () => string;
|
|
8022
8022
|
toTimeString: () => string;
|
|
8023
|
-
toLocaleString: (() => string) & ((
|
|
8023
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
8024
8024
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
8025
8025
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
8026
8026
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -8091,7 +8091,7 @@ declare class LocalRuntime {
|
|
|
8091
8091
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
8092
8092
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
8093
8093
|
} | undefined) => string);
|
|
8094
|
-
toLocaleDateString: (() => string) & ((
|
|
8094
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
8095
8095
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
8096
8096
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
8097
8097
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -8162,7 +8162,7 @@ declare class LocalRuntime {
|
|
|
8162
8162
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
8163
8163
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
8164
8164
|
} | undefined) => string);
|
|
8165
|
-
toLocaleTimeString: (() => string) & ((
|
|
8165
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
8166
8166
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
8167
8167
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
8168
8168
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -8269,7 +8269,7 @@ declare class LocalRuntime {
|
|
|
8269
8269
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
8270
8270
|
toUTCString: () => string;
|
|
8271
8271
|
toISOString: () => string;
|
|
8272
|
-
toJSON: (
|
|
8272
|
+
toJSON: (key?: any) => string;
|
|
8273
8273
|
getVarDate: () => {};
|
|
8274
8274
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
8275
8275
|
} | undefined;
|
|
@@ -8336,7 +8336,7 @@ declare class LocalRuntime {
|
|
|
8336
8336
|
toString: () => string;
|
|
8337
8337
|
toDateString: () => string;
|
|
8338
8338
|
toTimeString: () => string;
|
|
8339
|
-
toLocaleString: (() => string) & ((
|
|
8339
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
8340
8340
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
8341
8341
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
8342
8342
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -8407,7 +8407,7 @@ declare class LocalRuntime {
|
|
|
8407
8407
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
8408
8408
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
8409
8409
|
} | undefined) => string);
|
|
8410
|
-
toLocaleDateString: (() => string) & ((
|
|
8410
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
8411
8411
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
8412
8412
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
8413
8413
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -8478,7 +8478,7 @@ declare class LocalRuntime {
|
|
|
8478
8478
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
8479
8479
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
8480
8480
|
} | undefined) => string);
|
|
8481
|
-
toLocaleTimeString: (() => string) & ((
|
|
8481
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
8482
8482
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
8483
8483
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
8484
8484
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -8585,7 +8585,7 @@ declare class LocalRuntime {
|
|
|
8585
8585
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
8586
8586
|
toUTCString: () => string;
|
|
8587
8587
|
toISOString: () => string;
|
|
8588
|
-
toJSON: (
|
|
8588
|
+
toJSON: (key?: any) => string;
|
|
8589
8589
|
getVarDate: () => {};
|
|
8590
8590
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
8591
8591
|
};
|
|
@@ -8599,7 +8599,7 @@ declare class LocalRuntime {
|
|
|
8599
8599
|
toString: () => string;
|
|
8600
8600
|
toDateString: () => string;
|
|
8601
8601
|
toTimeString: () => string;
|
|
8602
|
-
toLocaleString: (() => string) & ((
|
|
8602
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
8603
8603
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
8604
8604
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
8605
8605
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -8670,7 +8670,7 @@ declare class LocalRuntime {
|
|
|
8670
8670
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
8671
8671
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
8672
8672
|
} | undefined) => string);
|
|
8673
|
-
toLocaleDateString: (() => string) & ((
|
|
8673
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
8674
8674
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
8675
8675
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
8676
8676
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -8741,7 +8741,7 @@ declare class LocalRuntime {
|
|
|
8741
8741
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
8742
8742
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
8743
8743
|
} | undefined) => string);
|
|
8744
|
-
toLocaleTimeString: (() => string) & ((
|
|
8744
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
8745
8745
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
8746
8746
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
8747
8747
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -8848,7 +8848,7 @@ declare class LocalRuntime {
|
|
|
8848
8848
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
8849
8849
|
toUTCString: () => string;
|
|
8850
8850
|
toISOString: () => string;
|
|
8851
|
-
toJSON: (
|
|
8851
|
+
toJSON: (key?: any) => string;
|
|
8852
8852
|
getVarDate: () => {};
|
|
8853
8853
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
8854
8854
|
} | undefined;
|
|
@@ -9061,20 +9061,20 @@ declare class LocalRuntime {
|
|
|
9061
9061
|
done?: false | undefined;
|
|
9062
9062
|
value: [key: string, value: string];
|
|
9063
9063
|
};
|
|
9064
|
-
return?: ((
|
|
9064
|
+
return?: ((value?: any) => {
|
|
9065
9065
|
done: true;
|
|
9066
9066
|
value: any;
|
|
9067
9067
|
} | {
|
|
9068
9068
|
done?: false | undefined;
|
|
9069
9069
|
value: [key: string, value: string];
|
|
9070
|
-
})
|
|
9071
|
-
throw?: ((
|
|
9070
|
+
}) | undefined;
|
|
9071
|
+
throw?: ((e?: any) => {
|
|
9072
9072
|
done: true;
|
|
9073
9073
|
value: any;
|
|
9074
9074
|
} | {
|
|
9075
9075
|
done?: false | undefined;
|
|
9076
9076
|
value: [key: string, value: string];
|
|
9077
|
-
})
|
|
9077
|
+
}) | undefined;
|
|
9078
9078
|
};
|
|
9079
9079
|
keys: () => {
|
|
9080
9080
|
[Symbol.iterator]: any;
|
|
@@ -9085,20 +9085,20 @@ declare class LocalRuntime {
|
|
|
9085
9085
|
done?: false | undefined;
|
|
9086
9086
|
value: string;
|
|
9087
9087
|
};
|
|
9088
|
-
return?: ((
|
|
9088
|
+
return?: ((value?: any) => {
|
|
9089
9089
|
done: true;
|
|
9090
9090
|
value: any;
|
|
9091
9091
|
} | {
|
|
9092
9092
|
done?: false | undefined;
|
|
9093
9093
|
value: string;
|
|
9094
|
-
})
|
|
9095
|
-
throw?: ((
|
|
9094
|
+
}) | undefined;
|
|
9095
|
+
throw?: ((e?: any) => {
|
|
9096
9096
|
done: true;
|
|
9097
9097
|
value: any;
|
|
9098
9098
|
} | {
|
|
9099
9099
|
done?: false | undefined;
|
|
9100
9100
|
value: string;
|
|
9101
|
-
})
|
|
9101
|
+
}) | undefined;
|
|
9102
9102
|
};
|
|
9103
9103
|
values: () => {
|
|
9104
9104
|
[Symbol.iterator]: any;
|
|
@@ -9109,20 +9109,20 @@ declare class LocalRuntime {
|
|
|
9109
9109
|
done?: false | undefined;
|
|
9110
9110
|
value: string;
|
|
9111
9111
|
};
|
|
9112
|
-
return?: ((
|
|
9112
|
+
return?: ((value?: any) => {
|
|
9113
9113
|
done: true;
|
|
9114
9114
|
value: any;
|
|
9115
9115
|
} | {
|
|
9116
9116
|
done?: false | undefined;
|
|
9117
9117
|
value: string;
|
|
9118
|
-
})
|
|
9119
|
-
throw?: ((
|
|
9118
|
+
}) | undefined;
|
|
9119
|
+
throw?: ((e?: any) => {
|
|
9120
9120
|
done: true;
|
|
9121
9121
|
value: any;
|
|
9122
9122
|
} | {
|
|
9123
9123
|
done?: false | undefined;
|
|
9124
9124
|
value: string;
|
|
9125
|
-
})
|
|
9125
|
+
}) | undefined;
|
|
9126
9126
|
};
|
|
9127
9127
|
forEach: (callback: (value: string, key: string, parent: any) => void, thisArg?: unknown) => void;
|
|
9128
9128
|
toString: () => string;
|
|
@@ -9135,20 +9135,20 @@ declare class LocalRuntime {
|
|
|
9135
9135
|
done?: false | undefined;
|
|
9136
9136
|
value: [key: string, value: string];
|
|
9137
9137
|
};
|
|
9138
|
-
return?: ((
|
|
9138
|
+
return?: ((value?: any) => {
|
|
9139
9139
|
done: true;
|
|
9140
9140
|
value: any;
|
|
9141
9141
|
} | {
|
|
9142
9142
|
done?: false | undefined;
|
|
9143
9143
|
value: [key: string, value: string];
|
|
9144
|
-
})
|
|
9145
|
-
throw?: ((
|
|
9144
|
+
}) | undefined;
|
|
9145
|
+
throw?: ((e?: any) => {
|
|
9146
9146
|
done: true;
|
|
9147
9147
|
value: any;
|
|
9148
9148
|
} | {
|
|
9149
9149
|
done?: false | undefined;
|
|
9150
9150
|
value: [key: string, value: string];
|
|
9151
|
-
})
|
|
9151
|
+
}) | undefined;
|
|
9152
9152
|
};
|
|
9153
9153
|
};
|
|
9154
9154
|
toJSON: () => string;
|
|
@@ -9164,15 +9164,15 @@ declare class LocalRuntime {
|
|
|
9164
9164
|
readonly readable: import("stream/web").ReadableStream<any>;
|
|
9165
9165
|
readonly writable: {
|
|
9166
9166
|
readonly locked: boolean;
|
|
9167
|
-
abort: (
|
|
9167
|
+
abort: (reason?: any) => Promise<void>;
|
|
9168
9168
|
close: () => Promise<void>;
|
|
9169
9169
|
getWriter: () => {
|
|
9170
9170
|
readonly closed: Promise<void>;
|
|
9171
9171
|
readonly ready: Promise<void>;
|
|
9172
9172
|
readonly desiredSize: number | null;
|
|
9173
|
-
abort: (
|
|
9173
|
+
abort: (reason?: any) => Promise<void>;
|
|
9174
9174
|
close: () => Promise<void>;
|
|
9175
|
-
write: (
|
|
9175
|
+
write: (chunk?: any) => Promise<void>;
|
|
9176
9176
|
releaseLock: () => void;
|
|
9177
9177
|
};
|
|
9178
9178
|
};
|
|
@@ -9188,7 +9188,7 @@ declare class LocalRuntime {
|
|
|
9188
9188
|
toString: () => string;
|
|
9189
9189
|
toDateString: () => string;
|
|
9190
9190
|
toTimeString: () => string;
|
|
9191
|
-
toLocaleString: (() => string) & ((
|
|
9191
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
9192
9192
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
9193
9193
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
9194
9194
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -9259,7 +9259,7 @@ declare class LocalRuntime {
|
|
|
9259
9259
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
9260
9260
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
9261
9261
|
} | undefined) => string);
|
|
9262
|
-
toLocaleDateString: (() => string) & ((
|
|
9262
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
9263
9263
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
9264
9264
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
9265
9265
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -9330,7 +9330,7 @@ declare class LocalRuntime {
|
|
|
9330
9330
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
9331
9331
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
9332
9332
|
} | undefined) => string);
|
|
9333
|
-
toLocaleTimeString: (() => string) & ((
|
|
9333
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
9334
9334
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
9335
9335
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
9336
9336
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -9437,7 +9437,7 @@ declare class LocalRuntime {
|
|
|
9437
9437
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
9438
9438
|
toUTCString: () => string;
|
|
9439
9439
|
toISOString: () => string;
|
|
9440
|
-
toJSON: (
|
|
9440
|
+
toJSON: (key?: any) => string;
|
|
9441
9441
|
getVarDate: () => {};
|
|
9442
9442
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
9443
9443
|
};
|
|
@@ -9465,7 +9465,7 @@ declare class LocalRuntime {
|
|
|
9465
9465
|
toString: () => string;
|
|
9466
9466
|
toDateString: () => string;
|
|
9467
9467
|
toTimeString: () => string;
|
|
9468
|
-
toLocaleString: (() => string) & ((
|
|
9468
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
9469
9469
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
9470
9470
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
9471
9471
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -9536,7 +9536,7 @@ declare class LocalRuntime {
|
|
|
9536
9536
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
9537
9537
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
9538
9538
|
} | undefined) => string);
|
|
9539
|
-
toLocaleDateString: (() => string) & ((
|
|
9539
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
9540
9540
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
9541
9541
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
9542
9542
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -9607,7 +9607,7 @@ declare class LocalRuntime {
|
|
|
9607
9607
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
9608
9608
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
9609
9609
|
} | undefined) => string);
|
|
9610
|
-
toLocaleTimeString: (() => string) & ((
|
|
9610
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
9611
9611
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
9612
9612
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
9613
9613
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -9714,7 +9714,7 @@ declare class LocalRuntime {
|
|
|
9714
9714
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
9715
9715
|
toUTCString: () => string;
|
|
9716
9716
|
toISOString: () => string;
|
|
9717
|
-
toJSON: (
|
|
9717
|
+
toJSON: (key?: any) => string;
|
|
9718
9718
|
getVarDate: () => {};
|
|
9719
9719
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
9720
9720
|
};
|
|
@@ -9731,7 +9731,7 @@ declare class LocalRuntime {
|
|
|
9731
9731
|
toString: () => string;
|
|
9732
9732
|
toDateString: () => string;
|
|
9733
9733
|
toTimeString: () => string;
|
|
9734
|
-
toLocaleString: (() => string) & ((
|
|
9734
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
9735
9735
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
9736
9736
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
9737
9737
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -9802,7 +9802,7 @@ declare class LocalRuntime {
|
|
|
9802
9802
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
9803
9803
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
9804
9804
|
} | undefined) => string);
|
|
9805
|
-
toLocaleDateString: (() => string) & ((
|
|
9805
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
9806
9806
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
9807
9807
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
9808
9808
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -9873,7 +9873,7 @@ declare class LocalRuntime {
|
|
|
9873
9873
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
9874
9874
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
9875
9875
|
} | undefined) => string);
|
|
9876
|
-
toLocaleTimeString: (() => string) & ((
|
|
9876
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
9877
9877
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
9878
9878
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
9879
9879
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -9980,7 +9980,7 @@ declare class LocalRuntime {
|
|
|
9980
9980
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
9981
9981
|
toUTCString: () => string;
|
|
9982
9982
|
toISOString: () => string;
|
|
9983
|
-
toJSON: (
|
|
9983
|
+
toJSON: (key?: any) => string;
|
|
9984
9984
|
getVarDate: () => {};
|
|
9985
9985
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
9986
9986
|
} | undefined;
|
|
@@ -10033,20 +10033,20 @@ declare class LocalRuntime {
|
|
|
10033
10033
|
done?: false | undefined;
|
|
10034
10034
|
value: [key: string, value: string];
|
|
10035
10035
|
};
|
|
10036
|
-
return?: ((
|
|
10036
|
+
return?: ((value?: any) => {
|
|
10037
10037
|
done: true;
|
|
10038
10038
|
value: any;
|
|
10039
10039
|
} | {
|
|
10040
10040
|
done?: false | undefined;
|
|
10041
10041
|
value: [key: string, value: string];
|
|
10042
|
-
})
|
|
10043
|
-
throw?: ((
|
|
10042
|
+
}) | undefined;
|
|
10043
|
+
throw?: ((e?: any) => {
|
|
10044
10044
|
done: true;
|
|
10045
10045
|
value: any;
|
|
10046
10046
|
} | {
|
|
10047
10047
|
done?: false | undefined;
|
|
10048
10048
|
value: [key: string, value: string];
|
|
10049
|
-
})
|
|
10049
|
+
}) | undefined;
|
|
10050
10050
|
};
|
|
10051
10051
|
keys: () => {
|
|
10052
10052
|
[Symbol.iterator]: any;
|
|
@@ -10057,20 +10057,20 @@ declare class LocalRuntime {
|
|
|
10057
10057
|
done?: false | undefined;
|
|
10058
10058
|
value: string;
|
|
10059
10059
|
};
|
|
10060
|
-
return?: ((
|
|
10060
|
+
return?: ((value?: any) => {
|
|
10061
10061
|
done: true;
|
|
10062
10062
|
value: any;
|
|
10063
10063
|
} | {
|
|
10064
10064
|
done?: false | undefined;
|
|
10065
10065
|
value: string;
|
|
10066
|
-
})
|
|
10067
|
-
throw?: ((
|
|
10066
|
+
}) | undefined;
|
|
10067
|
+
throw?: ((e?: any) => {
|
|
10068
10068
|
done: true;
|
|
10069
10069
|
value: any;
|
|
10070
10070
|
} | {
|
|
10071
10071
|
done?: false | undefined;
|
|
10072
10072
|
value: string;
|
|
10073
|
-
})
|
|
10073
|
+
}) | undefined;
|
|
10074
10074
|
};
|
|
10075
10075
|
values: () => {
|
|
10076
10076
|
[Symbol.iterator]: any;
|
|
@@ -10081,20 +10081,20 @@ declare class LocalRuntime {
|
|
|
10081
10081
|
done?: false | undefined;
|
|
10082
10082
|
value: string;
|
|
10083
10083
|
};
|
|
10084
|
-
return?: ((
|
|
10084
|
+
return?: ((value?: any) => {
|
|
10085
10085
|
done: true;
|
|
10086
10086
|
value: any;
|
|
10087
10087
|
} | {
|
|
10088
10088
|
done?: false | undefined;
|
|
10089
10089
|
value: string;
|
|
10090
|
-
})
|
|
10091
|
-
throw?: ((
|
|
10090
|
+
}) | undefined;
|
|
10091
|
+
throw?: ((e?: any) => {
|
|
10092
10092
|
done: true;
|
|
10093
10093
|
value: any;
|
|
10094
10094
|
} | {
|
|
10095
10095
|
done?: false | undefined;
|
|
10096
10096
|
value: string;
|
|
10097
|
-
})
|
|
10097
|
+
}) | undefined;
|
|
10098
10098
|
};
|
|
10099
10099
|
forEach: (callback: (value: string, key: string, parent: any) => void, thisArg?: unknown) => void;
|
|
10100
10100
|
toString: () => string;
|
|
@@ -10107,20 +10107,20 @@ declare class LocalRuntime {
|
|
|
10107
10107
|
done?: false | undefined;
|
|
10108
10108
|
value: [key: string, value: string];
|
|
10109
10109
|
};
|
|
10110
|
-
return?: ((
|
|
10110
|
+
return?: ((value?: any) => {
|
|
10111
10111
|
done: true;
|
|
10112
10112
|
value: any;
|
|
10113
10113
|
} | {
|
|
10114
10114
|
done?: false | undefined;
|
|
10115
10115
|
value: [key: string, value: string];
|
|
10116
|
-
})
|
|
10117
|
-
throw?: ((
|
|
10116
|
+
}) | undefined;
|
|
10117
|
+
throw?: ((e?: any) => {
|
|
10118
10118
|
done: true;
|
|
10119
10119
|
value: any;
|
|
10120
10120
|
} | {
|
|
10121
10121
|
done?: false | undefined;
|
|
10122
10122
|
value: [key: string, value: string];
|
|
10123
|
-
})
|
|
10123
|
+
}) | undefined;
|
|
10124
10124
|
};
|
|
10125
10125
|
};
|
|
10126
10126
|
toJSON: () => string;
|
|
@@ -10136,15 +10136,15 @@ declare class LocalRuntime {
|
|
|
10136
10136
|
readonly readable: import("stream/web").ReadableStream<any>;
|
|
10137
10137
|
readonly writable: {
|
|
10138
10138
|
readonly locked: boolean;
|
|
10139
|
-
abort: (
|
|
10139
|
+
abort: (reason?: any) => Promise<void>;
|
|
10140
10140
|
close: () => Promise<void>;
|
|
10141
10141
|
getWriter: () => {
|
|
10142
10142
|
readonly closed: Promise<void>;
|
|
10143
10143
|
readonly ready: Promise<void>;
|
|
10144
10144
|
readonly desiredSize: number | null;
|
|
10145
|
-
abort: (
|
|
10145
|
+
abort: (reason?: any) => Promise<void>;
|
|
10146
10146
|
close: () => Promise<void>;
|
|
10147
|
-
write: (
|
|
10147
|
+
write: (chunk?: any) => Promise<void>;
|
|
10148
10148
|
releaseLock: () => void;
|
|
10149
10149
|
};
|
|
10150
10150
|
};
|
|
@@ -10160,7 +10160,7 @@ declare class LocalRuntime {
|
|
|
10160
10160
|
toString: () => string;
|
|
10161
10161
|
toDateString: () => string;
|
|
10162
10162
|
toTimeString: () => string;
|
|
10163
|
-
toLocaleString: (() => string) & ((
|
|
10163
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
10164
10164
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
10165
10165
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
10166
10166
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -10231,7 +10231,7 @@ declare class LocalRuntime {
|
|
|
10231
10231
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
10232
10232
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
10233
10233
|
} | undefined) => string);
|
|
10234
|
-
toLocaleDateString: (() => string) & ((
|
|
10234
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
10235
10235
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
10236
10236
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
10237
10237
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -10302,7 +10302,7 @@ declare class LocalRuntime {
|
|
|
10302
10302
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
10303
10303
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
10304
10304
|
} | undefined) => string);
|
|
10305
|
-
toLocaleTimeString: (() => string) & ((
|
|
10305
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
10306
10306
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
10307
10307
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
10308
10308
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -10409,7 +10409,7 @@ declare class LocalRuntime {
|
|
|
10409
10409
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
10410
10410
|
toUTCString: () => string;
|
|
10411
10411
|
toISOString: () => string;
|
|
10412
|
-
toJSON: (
|
|
10412
|
+
toJSON: (key?: any) => string;
|
|
10413
10413
|
getVarDate: () => {};
|
|
10414
10414
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
10415
10415
|
};
|
|
@@ -10437,7 +10437,7 @@ declare class LocalRuntime {
|
|
|
10437
10437
|
toString: () => string;
|
|
10438
10438
|
toDateString: () => string;
|
|
10439
10439
|
toTimeString: () => string;
|
|
10440
|
-
toLocaleString: (() => string) & ((
|
|
10440
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
10441
10441
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
10442
10442
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
10443
10443
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -10508,7 +10508,7 @@ declare class LocalRuntime {
|
|
|
10508
10508
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
10509
10509
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
10510
10510
|
} | undefined) => string);
|
|
10511
|
-
toLocaleDateString: (() => string) & ((
|
|
10511
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
10512
10512
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
10513
10513
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
10514
10514
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -10579,7 +10579,7 @@ declare class LocalRuntime {
|
|
|
10579
10579
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
10580
10580
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
10581
10581
|
} | undefined) => string);
|
|
10582
|
-
toLocaleTimeString: (() => string) & ((
|
|
10582
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
10583
10583
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
10584
10584
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
10585
10585
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -10686,7 +10686,7 @@ declare class LocalRuntime {
|
|
|
10686
10686
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
10687
10687
|
toUTCString: () => string;
|
|
10688
10688
|
toISOString: () => string;
|
|
10689
|
-
toJSON: (
|
|
10689
|
+
toJSON: (key?: any) => string;
|
|
10690
10690
|
getVarDate: () => {};
|
|
10691
10691
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
10692
10692
|
};
|
|
@@ -10703,7 +10703,7 @@ declare class LocalRuntime {
|
|
|
10703
10703
|
toString: () => string;
|
|
10704
10704
|
toDateString: () => string;
|
|
10705
10705
|
toTimeString: () => string;
|
|
10706
|
-
toLocaleString: (() => string) & ((
|
|
10706
|
+
toLocaleString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
10707
10707
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
10708
10708
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
10709
10709
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -10774,7 +10774,7 @@ declare class LocalRuntime {
|
|
|
10774
10774
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
10775
10775
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
10776
10776
|
} | undefined) => string);
|
|
10777
|
-
toLocaleDateString: (() => string) & ((
|
|
10777
|
+
toLocaleDateString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
10778
10778
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
10779
10779
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
10780
10780
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -10845,7 +10845,7 @@ declare class LocalRuntime {
|
|
|
10845
10845
|
hourCycle?: "h11" | "h12" | "h23" | "h24" | undefined;
|
|
10846
10846
|
fractionalSecondDigits?: 2 | 1 | 3 | undefined;
|
|
10847
10847
|
} | undefined) => string);
|
|
10848
|
-
toLocaleTimeString: (() => string) & ((
|
|
10848
|
+
toLocaleTimeString: (() => string) & ((locales?: string | string[] | undefined, options?: {
|
|
10849
10849
|
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
10850
10850
|
weekday?: "long" | "short" | "narrow" | undefined;
|
|
10851
10851
|
era?: "long" | "short" | "narrow" | undefined;
|
|
@@ -10952,7 +10952,7 @@ declare class LocalRuntime {
|
|
|
10952
10952
|
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
10953
10953
|
toUTCString: () => string;
|
|
10954
10954
|
toISOString: () => string;
|
|
10955
|
-
toJSON: (
|
|
10955
|
+
toJSON: (key?: any) => string;
|
|
10956
10956
|
getVarDate: () => {};
|
|
10957
10957
|
[Symbol.toPrimitive]: ((hint: "default") => string) & ((hint: "string") => string) & ((hint: "number") => number) & ((hint: string) => string | number);
|
|
10958
10958
|
} | undefined;
|
|
@@ -10997,20 +10997,20 @@ declare class LocalRuntime {
|
|
|
10997
10997
|
done?: false | undefined;
|
|
10998
10998
|
value: [key: string, value: string];
|
|
10999
10999
|
};
|
|
11000
|
-
return?: ((
|
|
11000
|
+
return?: ((value?: any) => {
|
|
11001
11001
|
done: true;
|
|
11002
11002
|
value: any;
|
|
11003
11003
|
} | {
|
|
11004
11004
|
done?: false | undefined;
|
|
11005
11005
|
value: [key: string, value: string];
|
|
11006
|
-
})
|
|
11007
|
-
throw?: ((
|
|
11006
|
+
}) | undefined;
|
|
11007
|
+
throw?: ((e?: any) => {
|
|
11008
11008
|
done: true;
|
|
11009
11009
|
value: any;
|
|
11010
11010
|
} | {
|
|
11011
11011
|
done?: false | undefined;
|
|
11012
11012
|
value: [key: string, value: string];
|
|
11013
|
-
})
|
|
11013
|
+
}) | undefined;
|
|
11014
11014
|
};
|
|
11015
11015
|
keys: () => {
|
|
11016
11016
|
[Symbol.iterator]: any;
|
|
@@ -11021,20 +11021,20 @@ declare class LocalRuntime {
|
|
|
11021
11021
|
done?: false | undefined;
|
|
11022
11022
|
value: string;
|
|
11023
11023
|
};
|
|
11024
|
-
return?: ((
|
|
11024
|
+
return?: ((value?: any) => {
|
|
11025
11025
|
done: true;
|
|
11026
11026
|
value: any;
|
|
11027
11027
|
} | {
|
|
11028
11028
|
done?: false | undefined;
|
|
11029
11029
|
value: string;
|
|
11030
|
-
})
|
|
11031
|
-
throw?: ((
|
|
11030
|
+
}) | undefined;
|
|
11031
|
+
throw?: ((e?: any) => {
|
|
11032
11032
|
done: true;
|
|
11033
11033
|
value: any;
|
|
11034
11034
|
} | {
|
|
11035
11035
|
done?: false | undefined;
|
|
11036
11036
|
value: string;
|
|
11037
|
-
})
|
|
11037
|
+
}) | undefined;
|
|
11038
11038
|
};
|
|
11039
11039
|
values: () => {
|
|
11040
11040
|
[Symbol.iterator]: any;
|
|
@@ -11045,20 +11045,20 @@ declare class LocalRuntime {
|
|
|
11045
11045
|
done?: false | undefined;
|
|
11046
11046
|
value: string;
|
|
11047
11047
|
};
|
|
11048
|
-
return?: ((
|
|
11048
|
+
return?: ((value?: any) => {
|
|
11049
11049
|
done: true;
|
|
11050
11050
|
value: any;
|
|
11051
11051
|
} | {
|
|
11052
11052
|
done?: false | undefined;
|
|
11053
11053
|
value: string;
|
|
11054
|
-
})
|
|
11055
|
-
throw?: ((
|
|
11054
|
+
}) | undefined;
|
|
11055
|
+
throw?: ((e?: any) => {
|
|
11056
11056
|
done: true;
|
|
11057
11057
|
value: any;
|
|
11058
11058
|
} | {
|
|
11059
11059
|
done?: false | undefined;
|
|
11060
11060
|
value: string;
|
|
11061
|
-
})
|
|
11061
|
+
}) | undefined;
|
|
11062
11062
|
};
|
|
11063
11063
|
forEach: (callback: (value: string, key: string, parent: any) => void, thisArg?: unknown) => void;
|
|
11064
11064
|
toString: () => string;
|
|
@@ -11071,20 +11071,20 @@ declare class LocalRuntime {
|
|
|
11071
11071
|
done?: false | undefined;
|
|
11072
11072
|
value: [key: string, value: string];
|
|
11073
11073
|
};
|
|
11074
|
-
return?: ((
|
|
11074
|
+
return?: ((value?: any) => {
|
|
11075
11075
|
done: true;
|
|
11076
11076
|
value: any;
|
|
11077
11077
|
} | {
|
|
11078
11078
|
done?: false | undefined;
|
|
11079
11079
|
value: [key: string, value: string];
|
|
11080
|
-
})
|
|
11081
|
-
throw?: ((
|
|
11080
|
+
}) | undefined;
|
|
11081
|
+
throw?: ((e?: any) => {
|
|
11082
11082
|
done: true;
|
|
11083
11083
|
value: any;
|
|
11084
11084
|
} | {
|
|
11085
11085
|
done?: false | undefined;
|
|
11086
11086
|
value: [key: string, value: string];
|
|
11087
|
-
})
|
|
11087
|
+
}) | undefined;
|
|
11088
11088
|
};
|
|
11089
11089
|
};
|
|
11090
11090
|
toJSON: () => string;
|
|
@@ -11122,20 +11122,20 @@ declare class LocalRuntime {
|
|
|
11122
11122
|
done?: false | undefined;
|
|
11123
11123
|
value: [key: string, value: string];
|
|
11124
11124
|
};
|
|
11125
|
-
return?: ((
|
|
11125
|
+
return?: ((value?: any) => {
|
|
11126
11126
|
done: true;
|
|
11127
11127
|
value: any;
|
|
11128
11128
|
} | {
|
|
11129
11129
|
done?: false | undefined;
|
|
11130
11130
|
value: [key: string, value: string];
|
|
11131
|
-
})
|
|
11132
|
-
throw?: ((
|
|
11131
|
+
}) | undefined;
|
|
11132
|
+
throw?: ((e?: any) => {
|
|
11133
11133
|
done: true;
|
|
11134
11134
|
value: any;
|
|
11135
11135
|
} | {
|
|
11136
11136
|
done?: false | undefined;
|
|
11137
11137
|
value: [key: string, value: string];
|
|
11138
|
-
})
|
|
11138
|
+
}) | undefined;
|
|
11139
11139
|
};
|
|
11140
11140
|
keys: () => {
|
|
11141
11141
|
[Symbol.iterator]: any;
|
|
@@ -11146,20 +11146,20 @@ declare class LocalRuntime {
|
|
|
11146
11146
|
done?: false | undefined;
|
|
11147
11147
|
value: string;
|
|
11148
11148
|
};
|
|
11149
|
-
return?: ((
|
|
11149
|
+
return?: ((value?: any) => {
|
|
11150
11150
|
done: true;
|
|
11151
11151
|
value: any;
|
|
11152
11152
|
} | {
|
|
11153
11153
|
done?: false | undefined;
|
|
11154
11154
|
value: string;
|
|
11155
|
-
})
|
|
11156
|
-
throw?: ((
|
|
11155
|
+
}) | undefined;
|
|
11156
|
+
throw?: ((e?: any) => {
|
|
11157
11157
|
done: true;
|
|
11158
11158
|
value: any;
|
|
11159
11159
|
} | {
|
|
11160
11160
|
done?: false | undefined;
|
|
11161
11161
|
value: string;
|
|
11162
|
-
})
|
|
11162
|
+
}) | undefined;
|
|
11163
11163
|
};
|
|
11164
11164
|
values: () => {
|
|
11165
11165
|
[Symbol.iterator]: any;
|
|
@@ -11170,20 +11170,20 @@ declare class LocalRuntime {
|
|
|
11170
11170
|
done?: false | undefined;
|
|
11171
11171
|
value: string;
|
|
11172
11172
|
};
|
|
11173
|
-
return?: ((
|
|
11173
|
+
return?: ((value?: any) => {
|
|
11174
11174
|
done: true;
|
|
11175
11175
|
value: any;
|
|
11176
11176
|
} | {
|
|
11177
11177
|
done?: false | undefined;
|
|
11178
11178
|
value: string;
|
|
11179
|
-
})
|
|
11180
|
-
throw?: ((
|
|
11179
|
+
}) | undefined;
|
|
11180
|
+
throw?: ((e?: any) => {
|
|
11181
11181
|
done: true;
|
|
11182
11182
|
value: any;
|
|
11183
11183
|
} | {
|
|
11184
11184
|
done?: false | undefined;
|
|
11185
11185
|
value: string;
|
|
11186
|
-
})
|
|
11186
|
+
}) | undefined;
|
|
11187
11187
|
};
|
|
11188
11188
|
forEach: (callback: (value: string, key: string, parent: any) => void, thisArg?: unknown) => void;
|
|
11189
11189
|
toString: () => string;
|
|
@@ -11196,20 +11196,20 @@ declare class LocalRuntime {
|
|
|
11196
11196
|
done?: false | undefined;
|
|
11197
11197
|
value: [key: string, value: string];
|
|
11198
11198
|
};
|
|
11199
|
-
return?: ((
|
|
11199
|
+
return?: ((value?: any) => {
|
|
11200
11200
|
done: true;
|
|
11201
11201
|
value: any;
|
|
11202
11202
|
} | {
|
|
11203
11203
|
done?: false | undefined;
|
|
11204
11204
|
value: [key: string, value: string];
|
|
11205
|
-
})
|
|
11206
|
-
throw?: ((
|
|
11205
|
+
}) | undefined;
|
|
11206
|
+
throw?: ((e?: any) => {
|
|
11207
11207
|
done: true;
|
|
11208
11208
|
value: any;
|
|
11209
11209
|
} | {
|
|
11210
11210
|
done?: false | undefined;
|
|
11211
11211
|
value: [key: string, value: string];
|
|
11212
|
-
})
|
|
11212
|
+
}) | undefined;
|
|
11213
11213
|
};
|
|
11214
11214
|
};
|
|
11215
11215
|
toJSON: () => string;
|
|
@@ -11247,20 +11247,20 @@ declare class LocalRuntime {
|
|
|
11247
11247
|
done?: false | undefined;
|
|
11248
11248
|
value: [key: string, value: string];
|
|
11249
11249
|
};
|
|
11250
|
-
return?: ((
|
|
11250
|
+
return?: ((value?: any) => {
|
|
11251
11251
|
done: true;
|
|
11252
11252
|
value: any;
|
|
11253
11253
|
} | {
|
|
11254
11254
|
done?: false | undefined;
|
|
11255
11255
|
value: [key: string, value: string];
|
|
11256
|
-
})
|
|
11257
|
-
throw?: ((
|
|
11256
|
+
}) | undefined;
|
|
11257
|
+
throw?: ((e?: any) => {
|
|
11258
11258
|
done: true;
|
|
11259
11259
|
value: any;
|
|
11260
11260
|
} | {
|
|
11261
11261
|
done?: false | undefined;
|
|
11262
11262
|
value: [key: string, value: string];
|
|
11263
|
-
})
|
|
11263
|
+
}) | undefined;
|
|
11264
11264
|
};
|
|
11265
11265
|
keys: () => {
|
|
11266
11266
|
[Symbol.iterator]: any;
|
|
@@ -11271,20 +11271,20 @@ declare class LocalRuntime {
|
|
|
11271
11271
|
done?: false | undefined;
|
|
11272
11272
|
value: string;
|
|
11273
11273
|
};
|
|
11274
|
-
return?: ((
|
|
11274
|
+
return?: ((value?: any) => {
|
|
11275
11275
|
done: true;
|
|
11276
11276
|
value: any;
|
|
11277
11277
|
} | {
|
|
11278
11278
|
done?: false | undefined;
|
|
11279
11279
|
value: string;
|
|
11280
|
-
})
|
|
11281
|
-
throw?: ((
|
|
11280
|
+
}) | undefined;
|
|
11281
|
+
throw?: ((e?: any) => {
|
|
11282
11282
|
done: true;
|
|
11283
11283
|
value: any;
|
|
11284
11284
|
} | {
|
|
11285
11285
|
done?: false | undefined;
|
|
11286
11286
|
value: string;
|
|
11287
|
-
})
|
|
11287
|
+
}) | undefined;
|
|
11288
11288
|
};
|
|
11289
11289
|
values: () => {
|
|
11290
11290
|
[Symbol.iterator]: any;
|
|
@@ -11295,20 +11295,20 @@ declare class LocalRuntime {
|
|
|
11295
11295
|
done?: false | undefined;
|
|
11296
11296
|
value: string;
|
|
11297
11297
|
};
|
|
11298
|
-
return?: ((
|
|
11298
|
+
return?: ((value?: any) => {
|
|
11299
11299
|
done: true;
|
|
11300
11300
|
value: any;
|
|
11301
11301
|
} | {
|
|
11302
11302
|
done?: false | undefined;
|
|
11303
11303
|
value: string;
|
|
11304
|
-
})
|
|
11305
|
-
throw?: ((
|
|
11304
|
+
}) | undefined;
|
|
11305
|
+
throw?: ((e?: any) => {
|
|
11306
11306
|
done: true;
|
|
11307
11307
|
value: any;
|
|
11308
11308
|
} | {
|
|
11309
11309
|
done?: false | undefined;
|
|
11310
11310
|
value: string;
|
|
11311
|
-
})
|
|
11311
|
+
}) | undefined;
|
|
11312
11312
|
};
|
|
11313
11313
|
forEach: (callback: (value: string, key: string, parent: any) => void, thisArg?: unknown) => void;
|
|
11314
11314
|
toString: () => string;
|
|
@@ -11321,20 +11321,20 @@ declare class LocalRuntime {
|
|
|
11321
11321
|
done?: false | undefined;
|
|
11322
11322
|
value: [key: string, value: string];
|
|
11323
11323
|
};
|
|
11324
|
-
return?: ((
|
|
11324
|
+
return?: ((value?: any) => {
|
|
11325
11325
|
done: true;
|
|
11326
11326
|
value: any;
|
|
11327
11327
|
} | {
|
|
11328
11328
|
done?: false | undefined;
|
|
11329
11329
|
value: [key: string, value: string];
|
|
11330
|
-
})
|
|
11331
|
-
throw?: ((
|
|
11330
|
+
}) | undefined;
|
|
11331
|
+
throw?: ((e?: any) => {
|
|
11332
11332
|
done: true;
|
|
11333
11333
|
value: any;
|
|
11334
11334
|
} | {
|
|
11335
11335
|
done?: false | undefined;
|
|
11336
11336
|
value: [key: string, value: string];
|
|
11337
|
-
})
|
|
11337
|
+
}) | undefined;
|
|
11338
11338
|
};
|
|
11339
11339
|
};
|
|
11340
11340
|
toJSON: () => string;
|
|
@@ -11372,20 +11372,20 @@ declare class LocalRuntime {
|
|
|
11372
11372
|
done?: false | undefined;
|
|
11373
11373
|
value: [key: string, value: string];
|
|
11374
11374
|
};
|
|
11375
|
-
return?: ((
|
|
11375
|
+
return?: ((value?: any) => {
|
|
11376
11376
|
done: true;
|
|
11377
11377
|
value: any;
|
|
11378
11378
|
} | {
|
|
11379
11379
|
done?: false | undefined;
|
|
11380
11380
|
value: [key: string, value: string];
|
|
11381
|
-
})
|
|
11382
|
-
throw?: ((
|
|
11381
|
+
}) | undefined;
|
|
11382
|
+
throw?: ((e?: any) => {
|
|
11383
11383
|
done: true;
|
|
11384
11384
|
value: any;
|
|
11385
11385
|
} | {
|
|
11386
11386
|
done?: false | undefined;
|
|
11387
11387
|
value: [key: string, value: string];
|
|
11388
|
-
})
|
|
11388
|
+
}) | undefined;
|
|
11389
11389
|
};
|
|
11390
11390
|
keys: () => {
|
|
11391
11391
|
[Symbol.iterator]: any;
|
|
@@ -11396,20 +11396,20 @@ declare class LocalRuntime {
|
|
|
11396
11396
|
done?: false | undefined;
|
|
11397
11397
|
value: string;
|
|
11398
11398
|
};
|
|
11399
|
-
return?: ((
|
|
11399
|
+
return?: ((value?: any) => {
|
|
11400
11400
|
done: true;
|
|
11401
11401
|
value: any;
|
|
11402
11402
|
} | {
|
|
11403
11403
|
done?: false | undefined;
|
|
11404
11404
|
value: string;
|
|
11405
|
-
})
|
|
11406
|
-
throw?: ((
|
|
11405
|
+
}) | undefined;
|
|
11406
|
+
throw?: ((e?: any) => {
|
|
11407
11407
|
done: true;
|
|
11408
11408
|
value: any;
|
|
11409
11409
|
} | {
|
|
11410
11410
|
done?: false | undefined;
|
|
11411
11411
|
value: string;
|
|
11412
|
-
})
|
|
11412
|
+
}) | undefined;
|
|
11413
11413
|
};
|
|
11414
11414
|
values: () => {
|
|
11415
11415
|
[Symbol.iterator]: any;
|
|
@@ -11420,20 +11420,20 @@ declare class LocalRuntime {
|
|
|
11420
11420
|
done?: false | undefined;
|
|
11421
11421
|
value: string;
|
|
11422
11422
|
};
|
|
11423
|
-
return?: ((
|
|
11423
|
+
return?: ((value?: any) => {
|
|
11424
11424
|
done: true;
|
|
11425
11425
|
value: any;
|
|
11426
11426
|
} | {
|
|
11427
11427
|
done?: false | undefined;
|
|
11428
11428
|
value: string;
|
|
11429
|
-
})
|
|
11430
|
-
throw?: ((
|
|
11429
|
+
}) | undefined;
|
|
11430
|
+
throw?: ((e?: any) => {
|
|
11431
11431
|
done: true;
|
|
11432
11432
|
value: any;
|
|
11433
11433
|
} | {
|
|
11434
11434
|
done?: false | undefined;
|
|
11435
11435
|
value: string;
|
|
11436
|
-
})
|
|
11436
|
+
}) | undefined;
|
|
11437
11437
|
};
|
|
11438
11438
|
forEach: (callback: (value: string, key: string, parent: any) => void, thisArg?: unknown) => void;
|
|
11439
11439
|
toString: () => string;
|
|
@@ -11446,20 +11446,20 @@ declare class LocalRuntime {
|
|
|
11446
11446
|
done?: false | undefined;
|
|
11447
11447
|
value: [key: string, value: string];
|
|
11448
11448
|
};
|
|
11449
|
-
return?: ((
|
|
11449
|
+
return?: ((value?: any) => {
|
|
11450
11450
|
done: true;
|
|
11451
11451
|
value: any;
|
|
11452
11452
|
} | {
|
|
11453
11453
|
done?: false | undefined;
|
|
11454
11454
|
value: [key: string, value: string];
|
|
11455
|
-
})
|
|
11456
|
-
throw?: ((
|
|
11455
|
+
}) | undefined;
|
|
11456
|
+
throw?: ((e?: any) => {
|
|
11457
11457
|
done: true;
|
|
11458
11458
|
value: any;
|
|
11459
11459
|
} | {
|
|
11460
11460
|
done?: false | undefined;
|
|
11461
11461
|
value: [key: string, value: string];
|
|
11462
|
-
})
|
|
11462
|
+
}) | undefined;
|
|
11463
11463
|
};
|
|
11464
11464
|
};
|
|
11465
11465
|
toJSON: () => string;
|
|
@@ -11497,20 +11497,20 @@ declare class LocalRuntime {
|
|
|
11497
11497
|
done?: false | undefined;
|
|
11498
11498
|
value: [key: string, value: string];
|
|
11499
11499
|
};
|
|
11500
|
-
return?: ((
|
|
11500
|
+
return?: ((value?: any) => {
|
|
11501
11501
|
done: true;
|
|
11502
11502
|
value: any;
|
|
11503
11503
|
} | {
|
|
11504
11504
|
done?: false | undefined;
|
|
11505
11505
|
value: [key: string, value: string];
|
|
11506
|
-
})
|
|
11507
|
-
throw?: ((
|
|
11506
|
+
}) | undefined;
|
|
11507
|
+
throw?: ((e?: any) => {
|
|
11508
11508
|
done: true;
|
|
11509
11509
|
value: any;
|
|
11510
11510
|
} | {
|
|
11511
11511
|
done?: false | undefined;
|
|
11512
11512
|
value: [key: string, value: string];
|
|
11513
|
-
})
|
|
11513
|
+
}) | undefined;
|
|
11514
11514
|
};
|
|
11515
11515
|
keys: () => {
|
|
11516
11516
|
[Symbol.iterator]: any;
|
|
@@ -11521,20 +11521,20 @@ declare class LocalRuntime {
|
|
|
11521
11521
|
done?: false | undefined;
|
|
11522
11522
|
value: string;
|
|
11523
11523
|
};
|
|
11524
|
-
return?: ((
|
|
11524
|
+
return?: ((value?: any) => {
|
|
11525
11525
|
done: true;
|
|
11526
11526
|
value: any;
|
|
11527
11527
|
} | {
|
|
11528
11528
|
done?: false | undefined;
|
|
11529
11529
|
value: string;
|
|
11530
|
-
})
|
|
11531
|
-
throw?: ((
|
|
11530
|
+
}) | undefined;
|
|
11531
|
+
throw?: ((e?: any) => {
|
|
11532
11532
|
done: true;
|
|
11533
11533
|
value: any;
|
|
11534
11534
|
} | {
|
|
11535
11535
|
done?: false | undefined;
|
|
11536
11536
|
value: string;
|
|
11537
|
-
})
|
|
11537
|
+
}) | undefined;
|
|
11538
11538
|
};
|
|
11539
11539
|
values: () => {
|
|
11540
11540
|
[Symbol.iterator]: any;
|
|
@@ -11545,20 +11545,20 @@ declare class LocalRuntime {
|
|
|
11545
11545
|
done?: false | undefined;
|
|
11546
11546
|
value: string;
|
|
11547
11547
|
};
|
|
11548
|
-
return?: ((
|
|
11548
|
+
return?: ((value?: any) => {
|
|
11549
11549
|
done: true;
|
|
11550
11550
|
value: any;
|
|
11551
11551
|
} | {
|
|
11552
11552
|
done?: false | undefined;
|
|
11553
11553
|
value: string;
|
|
11554
|
-
})
|
|
11555
|
-
throw?: ((
|
|
11554
|
+
}) | undefined;
|
|
11555
|
+
throw?: ((e?: any) => {
|
|
11556
11556
|
done: true;
|
|
11557
11557
|
value: any;
|
|
11558
11558
|
} | {
|
|
11559
11559
|
done?: false | undefined;
|
|
11560
11560
|
value: string;
|
|
11561
|
-
})
|
|
11561
|
+
}) | undefined;
|
|
11562
11562
|
};
|
|
11563
11563
|
forEach: (callback: (value: string, key: string, parent: any) => void, thisArg?: unknown) => void;
|
|
11564
11564
|
toString: () => string;
|
|
@@ -11571,20 +11571,20 @@ declare class LocalRuntime {
|
|
|
11571
11571
|
done?: false | undefined;
|
|
11572
11572
|
value: [key: string, value: string];
|
|
11573
11573
|
};
|
|
11574
|
-
return?: ((
|
|
11574
|
+
return?: ((value?: any) => {
|
|
11575
11575
|
done: true;
|
|
11576
11576
|
value: any;
|
|
11577
11577
|
} | {
|
|
11578
11578
|
done?: false | undefined;
|
|
11579
11579
|
value: [key: string, value: string];
|
|
11580
|
-
})
|
|
11581
|
-
throw?: ((
|
|
11580
|
+
}) | undefined;
|
|
11581
|
+
throw?: ((e?: any) => {
|
|
11582
11582
|
done: true;
|
|
11583
11583
|
value: any;
|
|
11584
11584
|
} | {
|
|
11585
11585
|
done?: false | undefined;
|
|
11586
11586
|
value: [key: string, value: string];
|
|
11587
|
-
})
|
|
11587
|
+
}) | undefined;
|
|
11588
11588
|
};
|
|
11589
11589
|
};
|
|
11590
11590
|
toJSON: () => string;
|
|
@@ -11622,20 +11622,20 @@ declare class LocalRuntime {
|
|
|
11622
11622
|
done?: false | undefined;
|
|
11623
11623
|
value: [key: string, value: string];
|
|
11624
11624
|
};
|
|
11625
|
-
return?: ((
|
|
11625
|
+
return?: ((value?: any) => {
|
|
11626
11626
|
done: true;
|
|
11627
11627
|
value: any;
|
|
11628
11628
|
} | {
|
|
11629
11629
|
done?: false | undefined;
|
|
11630
11630
|
value: [key: string, value: string];
|
|
11631
|
-
})
|
|
11632
|
-
throw?: ((
|
|
11631
|
+
}) | undefined;
|
|
11632
|
+
throw?: ((e?: any) => {
|
|
11633
11633
|
done: true;
|
|
11634
11634
|
value: any;
|
|
11635
11635
|
} | {
|
|
11636
11636
|
done?: false | undefined;
|
|
11637
11637
|
value: [key: string, value: string];
|
|
11638
|
-
})
|
|
11638
|
+
}) | undefined;
|
|
11639
11639
|
};
|
|
11640
11640
|
keys: () => {
|
|
11641
11641
|
[Symbol.iterator]: any;
|
|
@@ -11646,20 +11646,20 @@ declare class LocalRuntime {
|
|
|
11646
11646
|
done?: false | undefined;
|
|
11647
11647
|
value: string;
|
|
11648
11648
|
};
|
|
11649
|
-
return?: ((
|
|
11649
|
+
return?: ((value?: any) => {
|
|
11650
11650
|
done: true;
|
|
11651
11651
|
value: any;
|
|
11652
11652
|
} | {
|
|
11653
11653
|
done?: false | undefined;
|
|
11654
11654
|
value: string;
|
|
11655
|
-
})
|
|
11656
|
-
throw?: ((
|
|
11655
|
+
}) | undefined;
|
|
11656
|
+
throw?: ((e?: any) => {
|
|
11657
11657
|
done: true;
|
|
11658
11658
|
value: any;
|
|
11659
11659
|
} | {
|
|
11660
11660
|
done?: false | undefined;
|
|
11661
11661
|
value: string;
|
|
11662
|
-
})
|
|
11662
|
+
}) | undefined;
|
|
11663
11663
|
};
|
|
11664
11664
|
values: () => {
|
|
11665
11665
|
[Symbol.iterator]: any;
|
|
@@ -11670,20 +11670,20 @@ declare class LocalRuntime {
|
|
|
11670
11670
|
done?: false | undefined;
|
|
11671
11671
|
value: string;
|
|
11672
11672
|
};
|
|
11673
|
-
return?: ((
|
|
11673
|
+
return?: ((value?: any) => {
|
|
11674
11674
|
done: true;
|
|
11675
11675
|
value: any;
|
|
11676
11676
|
} | {
|
|
11677
11677
|
done?: false | undefined;
|
|
11678
11678
|
value: string;
|
|
11679
|
-
})
|
|
11680
|
-
throw?: ((
|
|
11679
|
+
}) | undefined;
|
|
11680
|
+
throw?: ((e?: any) => {
|
|
11681
11681
|
done: true;
|
|
11682
11682
|
value: any;
|
|
11683
11683
|
} | {
|
|
11684
11684
|
done?: false | undefined;
|
|
11685
11685
|
value: string;
|
|
11686
|
-
})
|
|
11686
|
+
}) | undefined;
|
|
11687
11687
|
};
|
|
11688
11688
|
forEach: (callback: (value: string, key: string, parent: any) => void, thisArg?: unknown) => void;
|
|
11689
11689
|
toString: () => string;
|
|
@@ -11696,20 +11696,20 @@ declare class LocalRuntime {
|
|
|
11696
11696
|
done?: false | undefined;
|
|
11697
11697
|
value: [key: string, value: string];
|
|
11698
11698
|
};
|
|
11699
|
-
return?: ((
|
|
11699
|
+
return?: ((value?: any) => {
|
|
11700
11700
|
done: true;
|
|
11701
11701
|
value: any;
|
|
11702
11702
|
} | {
|
|
11703
11703
|
done?: false | undefined;
|
|
11704
11704
|
value: [key: string, value: string];
|
|
11705
|
-
})
|
|
11706
|
-
throw?: ((
|
|
11705
|
+
}) | undefined;
|
|
11706
|
+
throw?: ((e?: any) => {
|
|
11707
11707
|
done: true;
|
|
11708
11708
|
value: any;
|
|
11709
11709
|
} | {
|
|
11710
11710
|
done?: false | undefined;
|
|
11711
11711
|
value: [key: string, value: string];
|
|
11712
|
-
})
|
|
11712
|
+
}) | undefined;
|
|
11713
11713
|
};
|
|
11714
11714
|
};
|
|
11715
11715
|
toJSON: () => string;
|