-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtype.ts
679 lines (613 loc) · 26.4 KB
/
type.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
/**
* Types.
*/
// organize-imports-ignore
/* eslint-disable @typescript-eslint/no-namespace */
/* eslint-disable @typescript-eslint/no-explicit-any */
import '#@initialize.ts';
import { type Dayjs } from 'dayjs';
import type * as cfw from '#@types/cfw.ts';
import { type Interface as LoggerInterface } from '#@classes/logger.ts';
import { $to, type $http } from '#index.ts';
// ---
// Types.
/**
* Defines basic types.
*/
export type Any = any;
export type { $Keyable as Object };
export type { $AnyObject as AnyObject };
export type ObjectKey = PropertyKey;
export type ObjectPath = number | string;
export type { $ObjectC9r as ObjectC9r };
export type { $Keyable as Keyable };
export type { $StrKeyable as StrKeyable };
export type { $Unkeyable as Unkeyable };
export type { $Function as Function };
export type { $AsyncFunction as AsyncFunction };
export type { $AnyVoidFunction as AnyVoidFunction };
export type TypedArray<Type extends $TypedArray = $TypedArray> = Type;
export type Primitive = null | undefined | boolean | number | bigint | string | symbol;
export type ObjectEntries<Type extends object = $Keyable> = [keyof Type, Type[keyof Type]][];
/**
* Defines class types.
*/
export type { $Time as Time };
export type * from '#class.ts';
/**
* Defines cross env types.
*/
export type { $URL as URL };
export type { $Headers as Headers };
export type { $HeadersInit as HeadersInit };
export type { $RawHeadersInit as RawHeadersInit };
export type { $Request as Request };
export type { $RequestInfo as RequestInfo };
export type { $RequestInit as RequestInit };
export type { $RequestC10nProps as RequestC10nProps };
export type { $Response as Response };
export type { $ResponseInit as ResponseInit };
export type { $BodyInit as BodyInit };
export type { $Timeout as Timeout };
export type { $Interval as Interval };
export type { $AbortSignal as AbortSignal };
export type { $fetch as fetch };
export type { $Blob as Blob };
/**
* Defines error-related types.
*/
export type { $ErrorCause as ErrorCause };
export type { $ErrorCauseObject as ErrorCauseObject };
/**
* Defines DOM-related types.
*/
export type DOMAtts = { [x: string]: unknown };
export type DOMEventTools = { cancel: () => void };
export type DOMEventTargetSelectors = EventTarget | string;
export type DOMEventDelegated = CustomEvent<{ target: Element; event: Event }>;
export type DOMEventHandler = ((event: Event) => void) | ((event: CustomEvent) => void) | ((event: Event) => Promise<void>) | ((event: CustomEvent) => Promise<void>);
/**
* Defines Cloudflare worker types.
*/
export type { cfw }; // `cfw` namespace.
/**
* Defines types common across Cloudflare workers & functions.
*/
export namespace $cfw {
export type EmailEvent = Readonly<cfw.ForwardableEmailMessage>;
export type ScheduledEvent = Readonly<cfw.FetcherScheduledOptions>;
export type ExecutionContext = Readonly<
Pick<
cfw.ExecutionContext | Parameters<cfw.PagesFunction>[0],
// These are the two required keys.
'waitUntil' | 'passThroughOnException'
>
>;
export type Environment = Readonly<{
RT: cfw.Fetcher;
RT_AI: cfw.Ai;
RT_D1: cfw.D1Database;
RT_R2: cfw.R2Bucket;
RT_KV: cfw.KVNamespace;
RT_QE: cfw.Queue;
AI: cfw.Ai;
D1: cfw.D1Database;
R2: cfw.R2Bucket;
KV: cfw.KVNamespace;
QE: cfw.Queue;
}>;
export type SubrequestCounter = { value: number };
export type RequestContextData = Readonly<{
emailEvent?: EmailEvent;
scheduledEvent?: ScheduledEvent;
ctx: ExecutionContext;
env: Environment;
url: cfw.URL;
request: cfw.Request;
fetch: typeof cfw.fetch;
caches: typeof cfw.caches;
auditLogger: LoggerInterface;
consentLogger: LoggerInterface;
subrequestCounter: SubrequestCounter;
}>;
export type Route<Type extends RequestContextData = RequestContextData> = ((rcData: Type) => Promise<cfw.Response>) & {
config?: Required<$http.RouteConfig>;
};
export type FetchFn =
| typeof cfw.fetch // Standard fetch signature on Cloudflare.
| ((rcData: RequestContextData, requestInfo: cfw.RequestInfo, requestInit?: cfw.RequestInit) => Promise<cfw.Response>);
}
/**
* Defines turnstile type, powered by Cloudflare.
*/
type $ꓺTurnstile = typeof turnstile;
export type { $ꓺTurnstile as Turnstile };
/**
* Defines ensurable types.
*/
export type EnsurableType =
| 'boolean' | 'boolean[]'
| 'number' | 'number[]'
| 'bigint' | 'bigint[]'
| 'string' | 'string[]'
| 'object' | 'object[]'
| 'plainObject' | 'plainObject[]'
| 'plainObjectDeep' | 'plainObjectDeep[]'
| 'unknown'; // prettier-ignore
export type EnsuredType<Type> =
Type extends 'boolean' ? boolean
: Type extends 'boolean[]' ? boolean[]
//
: Type extends 'number' ? number
: Type extends 'number[]' ? number[]
//
: Type extends 'bigint' ? bigint
: Type extends 'bigint[]' ? bigint[]
//
: Type extends 'string' ? string
: Type extends 'string[]' ? string[]
//
: Type extends 'object' ? object
: Type extends 'object[]' ? object[]
//
: Type extends 'plainObject' ? $Keyable
: Type extends 'plainObject[]' ? $Keyable[]
//
: Type extends 'plainObjectDeep' ? $Keyable
: Type extends 'plainObjectDeep[]' ? $Keyable[]
//
: unknown; // prettier-ignore
/**
* Defines readonly utility types.
*/
export type ReadonlyDeep<Type> = //
Type extends void | Primitive
? Type // Not applicable.
: //
Type extends $ꓺAnyFn
? //
{} extends $ꓺReadonlyObjectDeep<Type>
? Type // No keys; not applicable.
: //
$ꓺHasMultipleCallSignatures<Type> extends true
? Type // Not possible when there are multiple signatures.
: //
Type extends $ꓺAnyObjectC9r
? (new (...args: Parameters<Type>) => ReturnType<Type>) & $ꓺReadonlyObjectDeep<Type>
: ((...args: Parameters<Type>) => ReturnType<Type>) & $ꓺReadonlyObjectDeep<Type>
: //
Type extends Readonly<Set<infer TypeOfSet>>
? $ꓺReadonlySetDeep<TypeOfSet>
: //
Type extends Readonly<Map<infer KeyTypeOfMap, infer ValueTypeOfMap>>
? $ꓺReadonlyMapDeep<KeyTypeOfMap, ValueTypeOfMap>
: //
Type extends Readonly<unknown[]>
? $ꓺReadonlyArrayDeep<Type>
: //
Type extends object
? $ꓺReadonlyObjectDeep<Type>
: //
Type; // Not applicable.
type $ꓺReadonlyArrayDeep<Type extends Readonly<unknown[]>> = //
Type extends Readonly<[]> | Readonly<[...never[]]>
? Readonly<[]> // Empty array, or all never keys.
: //
Type extends Readonly<[infer First, ...infer Rest]>
? Readonly<[ReadonlyDeep<First>, ...$ꓺReadonlyArrayDeep<Rest>]>
: //
Type extends Readonly<[...infer Rest, infer Last]>
? Readonly<[...$ꓺReadonlyArrayDeep<Rest>, ReadonlyDeep<Last>]>
: //
Type extends Readonly<(infer TypeOfArray)[]>
? Readonly<ReadonlyDeep<TypeOfArray>[]>
: //
Type; // Not applicable.
type $ꓺReadonlySetDeep<Type> = Readonly<Set<ReadonlyDeep<Type>>>;
type $ꓺReadonlyMapDeep<KeyType, ValueType> = Readonly<Map<ReadonlyDeep<KeyType>, ReadonlyDeep<ValueType>>>;
type $ꓺReadonlyObjectDeep<Type extends object> = { readonly [Key in keyof Type]: ReadonlyDeep<Type[Key]> };
/**
* Defines writable utility types.
*/
export type Writable<Type> = //
Type extends void | Primitive
? Type // Not applicable.
: //
Type extends $ꓺAnyFn
? //
{} extends Writable<Type>
? Type // No keys; not applicable.
: //
$ꓺHasMultipleCallSignatures<Type> extends true
? Type // Not possible when there are multiple signatures.
: //
Type extends $ꓺAnyObjectC9r
? (new (...args: Parameters<Type>) => ReturnType<Type>) & Writable<Type>
: ((...args: Parameters<Type>) => ReturnType<Type>) & Writable<Type>
: //
Type extends Readonly<Set<infer TypeOfSet>>
? Set<TypeOfSet>
: //
Type extends Readonly<Map<infer KeyTypeOfMap, infer ValueTypeOfMap>>
? Map<KeyTypeOfMap, ValueTypeOfMap>
: //
Type extends Readonly<unknown[]>
? $ꓺWritableArray<Type>
: //
Type extends object
? { -readonly [Key in keyof Type]: Type[Key] }
: //
Type; // Not applicable.
export type WritableDeep<Type> = //
Type extends void | Primitive
? Type // Not applicable.
: //
Type extends $ꓺAnyFn
? //
{} extends $ꓺWritableObjectDeep<Type>
? Type // No keys; not applicable.
: //
$ꓺHasMultipleCallSignatures<Type> extends true
? Type // Not possible when there are multiple signatures.
: //
Type extends $ꓺAnyObjectC9r
? (new (...args: Parameters<Type>) => ReturnType<Type>) & $ꓺWritableObjectDeep<Type>
: ((...args: Parameters<Type>) => ReturnType<Type>) & $ꓺWritableObjectDeep<Type>
: //
Type extends Readonly<Set<unknown>>
? $ꓺWritableSetDeep<Type>
: //
Type extends Readonly<Map<unknown, unknown>>
? $ꓺWritableMapDeep<Type>
: //
Type extends Readonly<unknown[]>
? $ꓺWritableArrayDeep<Type>
: //
Type extends object
? $ꓺWritableObjectDeep<Type>
: //
Type; // Not applicable.
type $ꓺWritableArray<Type extends Readonly<unknown[]>> = //
Type extends Readonly<[]> | Readonly<[...never[]]>
? [] // Empty array, or all never keys.
: //
Type extends Readonly<[infer First, ...infer Rest]>
? [First, ...Rest]
: //
Type extends Readonly<[...infer Rest, infer Last]>
? [...Rest, Last]
: //
Type extends Readonly<(infer TypeOfArray)[]>
? TypeOfArray[]
: //
Type; // Not applicable.
type $ꓺWritableArrayDeep<Type extends Readonly<unknown[]>> = //
Type extends Readonly<[]> | Readonly<[...never[]]>
? [] // Empty array, or all never keys.
: //
Type extends Readonly<[infer First, ...infer Rest]>
? [WritableDeep<First>, ...$ꓺWritableArrayDeep<Rest>]
: //
Type extends Readonly<[...infer Rest, infer Last]>
? [...$ꓺWritableArrayDeep<Rest>, WritableDeep<Last>]
: //
Type extends Readonly<(infer TypeOfArray)[]>
? WritableDeep<TypeOfArray>[]
: //
Type; // Not applicable.
type $ꓺWritableObjectDeep<Type extends object> = { -readonly [Key in keyof Type]: WritableDeep<Type[Key]> };
type $ꓺWritableSetDeep<Type extends Readonly<Set<unknown>>> = Type extends Readonly<Set<infer TypeOfSet>> ? Set<WritableDeep<TypeOfSet>> : Type;
type $ꓺWritableMapDeep<Type extends Readonly<Map<unknown, unknown>>> = // These conditions are merely for type inference, they should never be false.
Type extends Readonly<Map<infer KeyTypeOfMap, infer ValueTypeOfMap>> ? Map<WritableDeep<KeyTypeOfMap>, WritableDeep<ValueTypeOfMap>> : Type;
/**
* Defines partial utility types.
*/
export type PartialDeep<Type> = //
Type extends void | Primitive
? Type // Not applicable.
: //
Type extends $ꓺAnyFn
? //
{} extends $ꓺPartialObjectDeep<Type>
? Type // No keys; not applicable.
: //
$ꓺHasMultipleCallSignatures<Type> extends true
? Type // Not possible when there are multiple signatures.
: //
Type extends $ꓺAnyObjectC9r
? (new (...args: Parameters<Type>) => ReturnType<Type>) & $ꓺPartialObjectDeep<Type>
: ((...args: Parameters<Type>) => ReturnType<Type>) & $ꓺPartialObjectDeep<Type>
: //
Type extends Set<infer TypeOfSet>
? $ꓺPartialSetDeep<TypeOfSet>
: //
Type extends Readonly<Set<infer TypeOfSet>>
? $ꓺPartialReadonlySetDeep<TypeOfSet>
: //
Type extends Map<infer KeyTypeOfMap, infer ValueTypeOfMap>
? $ꓺPartialMapDeep<KeyTypeOfMap, ValueTypeOfMap>
: //
Type extends Readonly<Map<infer KeyTypeOfMap, infer ValueTypeOfMap>>
? $ꓺPartialReadonlyMapDeep<KeyTypeOfMap, ValueTypeOfMap>
: //
Type extends Readonly<(infer TypeOfArray)[]>
? TypeOfArray[] extends Type // Tests for non-tuple arrays, specifically.
? Readonly<TypeOfArray[]> extends Type // Differentiates readonly.
? Readonly<PartialDeep<TypeOfArray>[]>
: PartialDeep<TypeOfArray>[]
: $ꓺPartialObjectDeep<Type>
: //
Type extends object
? $ꓺPartialObjectDeep<Type>
: //
Type; // Not applicable.
type $ꓺPartialSetDeep<Type> = Set<PartialDeep<Type>>;
type $ꓺPartialReadonlySetDeep<Type> = Readonly<Set<PartialDeep<Type>>>;
type $ꓺPartialMapDeep<KeyType, ValueType> = Map<PartialDeep<KeyType>, PartialDeep<ValueType>>;
type $ꓺPartialReadonlyMapDeep<KeyType, ValueType> = Readonly<Map<PartialDeep<KeyType>, PartialDeep<ValueType>>>;
type $ꓺPartialObjectDeep<Type extends object> = { [Key in keyof Type]?: PartialDeep<Type[Key]> };
/**
* Defines required utility types.
*/
export type RequiredDeep<Type> = //
Type extends void | Primitive
? Type // Not applicable.
: //
Type extends $ꓺAnyFn
? //
{} extends $ꓺRequiredObjectDeep<Type>
? Type // No keys; not applicable.
: //
$ꓺHasMultipleCallSignatures<Type> extends true
? Type // Not possible when there are multiple signatures.
: //
Type extends $ꓺAnyObjectC9r
? (new (...args: Parameters<Type>) => ReturnType<Type>) & $ꓺRequiredObjectDeep<Type>
: ((...args: Parameters<Type>) => ReturnType<Type>) & $ꓺRequiredObjectDeep<Type>
: //
Type extends Set<infer TypeOfSet>
? $ꓺRequiredSetDeep<TypeOfSet>
: //
Type extends Readonly<Set<infer TypeOfSet>>
? $ꓺRequiredReadonlySetDeep<TypeOfSet>
: //
Type extends Map<infer KeyTypeOfMap, infer ValueTypeOfMap>
? $ꓺRequiredMapDeep<KeyTypeOfMap, ValueTypeOfMap>
: //
Type extends Readonly<Map<infer KeyTypeOfMap, infer ValueTypeOfMap>>
? $ꓺRequiredReadonlyMapDeep<KeyTypeOfMap, ValueTypeOfMap>
: //
Type extends Readonly<(infer TypeOfArray)[]>
? TypeOfArray[] extends Type // Tests for non-tuple arrays, specifically.
? Readonly<TypeOfArray[]> extends Type // Differentiates readonly.
? Readonly<RequiredDeep<TypeOfArray>[]>
: RequiredDeep<TypeOfArray>[]
: $ꓺRequiredObjectDeep<Type>
: //
Type extends object
? $ꓺRequiredObjectDeep<Type>
: //
Type; // Not applicable.
type $ꓺRequiredSetDeep<Type> = Set<RequiredDeep<Type>>;
type $ꓺRequiredReadonlySetDeep<Type> = Readonly<Set<RequiredDeep<Type>>>;
type $ꓺRequiredMapDeep<KeyType, ValueType> = Map<RequiredDeep<KeyType>, RequiredDeep<ValueType>>;
type $ꓺRequiredReadonlyMapDeep<KeyType, ValueType> = Readonly<Map<RequiredDeep<KeyType>, RequiredDeep<ValueType>>>;
type $ꓺRequiredObjectDeep<Type extends object> = Required<{ [Key in keyof Type]: RequiredDeep<Type[Key]> }>;
/**
* Defines parameter utility types.
*/
export type PartialParametersOf<Type extends $Function> = PartialParameters<Parameters<Type>>;
export type PartialParameters<Tuple extends unknown[], Extracted extends unknown[] = []> = //
// If the tuple provided contains at least one required value.
Tuple extends [infer Next, ...infer Remaining]
? // Recurse with remaining + first being partial now.
PartialParameters<Remaining, [...Extracted, Next?]>
: // Else, return with an empty tuple.
[...Extracted, /* empty */ ...Tuple];
export type RemainingParameters<Provided extends unknown[], Expected extends unknown[]> = //
// If the expected parameters contains at least one required value.
Expected extends [infer unusedꓺFirstExpected, ...infer RestExpected]
? // If provided parameters contains at least one required value, recurse with one item less in each.
Provided extends [infer unusedꓺFirstProvided, ...infer RestProvided]
? RemainingParameters<RestProvided, RestExpected>
: // Else, remaining parameters unchanged.
Expected
: // Else, no more parameters.
[];
/**
* Defines flat array type.
*/
export type FlatArray<Type, Depth extends number> = ReturnType<typeof Array.prototype.flat<Type, Depth>>;
/**
* Defines predicate types.
*/
// These must narrow to a specific type, and not reflect a type.
// e.g., We don’t want any of these to ever return a union of types.
export type OfSet<Type> = Type extends Set<infer TypeOfSet> ? Set<TypeOfSet> : Set<unknown>;
export type OfObject<Type> = Type extends $AnyObject<infer TypeOfObject> ? TypeOfObject : $Keyable;
export type OfPromise<Type> = Type extends Promise<infer TypeOfPromise> ? Promise<TypeOfPromise> : Promise<unknown>;
export type OfIterable<Type> = Type extends Iterable<infer TypeOfIterable> ? Iterable<TypeOfIterable> : Iterable<unknown>;
export type OfMap<Type> = Type extends Map<infer KeyTypeOfMap, infer ValueTypeOfMap> ? Map<KeyTypeOfMap, ValueTypeOfMap> : Map<unknown, unknown>;
export type OfAsyncIterable<Type> = Type extends AsyncIterable<infer TypeOfAsyncIterable> ? AsyncIterable<TypeOfAsyncIterable> : AsyncIterable<unknown>;
export type OfArray<Type> = Type extends (infer TypeOfArray)[] ? TypeOfArray[] : Type extends Readonly<(infer TypeOfArray)[]> ? Readonly<TypeOfArray[]> : unknown[];
/**
* Defines protected internal types.
*/
type $Time = Dayjs;
type $TypedArray =
| Int8Array //
| Uint8Array
| Uint8ClampedArray
| Int16Array
| Uint16Array
| Int32Array
| Uint32Array
| Float32Array
| Float64Array
| BigInt64Array
| BigUint64Array;
type $URL = URL | cfw.URL;
type $Headers = Headers | cfw.Headers;
type $HeadersInit = HeadersInit | cfw.HeadersInit | $StrKeyable<{ [x: string]: string }>;
type $RawHeadersInit = HeadersInit | cfw.HeadersInit | $StrKeyable<{ [x: string]: string }> | string;
// If request changes, please review {$http.requestHash()}.
// If request changes, please review {$http.requestTypeIsCacheable()}.
type $Request = Request | cfw.Request;
type $RequestInfo = $Request | URL | string | cfw.RequestInfo;
type $RequestInit = RequestInit | cfw.RequestInit;
type $RequestC10nProps = {
emailEvent?: $cfw.EmailEvent;
scheduledEvent?: $cfw.ScheduledEvent;
serviceBinding?: {
subrequestCounter: $cfw.SubrequestCounter;
};
kvOptions?: {
cacheMinAge?: number; // In seconds.
cacheMaxAge?: number; // In seconds.
cacheMaxRetries?: number;
fetch?: $cfw.FetchFn;
};
proxyOptions?: {
proxy?: {
host?: string;
port?: number;
username?: string;
password?: string;
};
uaBotAppend?: string;
maxRedirects?: number;
timeout?: number; // In milliseconds.
};
};
type $Response = Response | cfw.Response;
type $ResponseInit = ResponseInit | cfw.ResponseInit;
type $BodyInit = BodyInit | cfw.BodyInit;
type $Timeout = ReturnType<typeof setTimeout> | number;
type $Interval = ReturnType<typeof setInterval> | number;
type $AbortSignal = AbortSignal | cfw.AbortSignal;
type $fetch = typeof fetch | typeof cfw.fetch;
type $Blob = Blob | cfw.Blob;
type $ErrorCause<Meta extends object = object> = Error | string | $ErrorCauseObject<Meta>;
type $ErrorCauseObject<Meta extends object = object> = Readonly<{
code: string;
meta?: $StrKeyable<Meta>;
}>;
type $Unkeyable = Record<ObjectKey, never>;
type $AnyObject<Type extends object = object> = Type & {};
type $Keyable<Type extends object = object> = Type & { [x: ObjectKey]: unknown };
type $StrKeyable<Type extends object = object> = Type & { [x: string]: unknown };
type $ObjectC9r<Type extends $ꓺAnyObjectC9r = $ꓺAnyObjectC9r> = Type;
type $Function<Type extends $ꓺAnyFn = $ꓺAnyFn> = (...args: Parameters<Type>) => ReturnType<Type>;
type $AsyncFunction<Type extends $ꓺAnyAsyncFn = $ꓺAnyAsyncFn> = (...args: Parameters<Type>) => ReturnType<Type>;
type $AnyVoidFunction<Type extends $ꓺAnyVoidFn = $ꓺAnyVoidFn> = (...args: Parameters<Type>) => ReturnType<Type>;
/**
* Defines private internal types.
*/
type $ꓺAnyFn = (...args: any[]) => unknown;
type $ꓺAnyAsyncFn = (...args: any[]) => Promise<unknown>;
type $ꓺAnyVoidFn = ((...args: any[]) => void) | ((...args: any[]) => Promise<void>);
type $ꓺAnyObjectC9r = ObjectConstructor | { new (...args: any[]): unknown };
type $ꓺHasMultipleCallSignatures<Type extends $ꓺAnyFn> = Type extends {
(...args: infer Args): unknown;
(...args: any[]): unknown;
}
? unknown[] extends Args
? false
: true
: //
false;
// ---
// Type utilities.
/**
* Ensures a specific value type.
*
* This can be used by methods that query arbitrary data and need to make a contract with the caller regarding what data
* type the caller expects to receive. The currently ensurable types are limited, but should satisfy basic needs.
*
* WARNING: Please note the inherent danger of using this approach. Arbitrary data is just that, arbitrary. In order for
* this to work without throwing errors, the caller needs to know something about the expected data, and those
* assumptions should be very good ones; i.e, 100% accurate, ideally, or problems may occur.
*
* Having given fair warning, the safest conversions are into: `boolean`, `string`, `array`, or `object` types, as these
* won’t throw errors. Anything can be converted into these types. Please review the list of URLs below to learn more.
*
* When converting to `string` {@see $to.string()} is used, such that `null`, `undefined` get converted into an empty
* string instead of into `'null'`, `'undefined'`. It does not, however, handle `true` or `false`. Thus, if booleans are
* converted into a string the conversion will occur as per usual in JavaScript; e.g., `'true'`, `'false'`.
*
* Casting as a `number` is also relatively safe, but will throw if attempting to convert from a `bigint` or `symbol`
* into a `number`. Additionally, converting to a `number` can result in `NaN` values, depending on the input value.
*
* When converting to `object`, please remember that everything is technically an object, and that any existing object
* value will simply go unchanged, as it is already an object. Thus, if you attempt to convert an array or function, for
* example, you will get back the array or function. Instead, use pseudo-types `plainObject`, or `plainObjectDeep`. That
* said, if you do use `object`, beware of primitive wrappers that result from a primitive converting into an object.
*
* Only `boolean`, `number`, `bigint`, `string` convert to bigints. Even then, conversion may throw if unable to coerce
* into a bigint data type internally. Please make sure you’re only converting numeric values into bigints.
*
* - Boolean coercion: {@see https://o5p.me/1syPaw}
* - Number coercion : {@see https://o5p.me/uxpBzD}
* - BigInt coercion : {@see https://o5p.me/ZEnvvn}
* - String coercion : {@see https://o5p.me/gWFae2}
* - Object coercion : {@see https://o5p.me/0m9DCR}
*
* @param value Value to ensure.
* @param type {@see EnsurableType}.
*
* @returns Value; in the ensured type.
*/
export const ensure = <Type extends EnsurableType>(value: unknown, type: Type): EnsuredType<Type> => {
switch (type) {
case 'boolean': {
return Boolean(value) as EnsuredType<Type>;
}
case 'boolean[]': {
return $to.array(value).map(Boolean) as EnsuredType<Type>;
}
case 'number': {
return Number(value) as EnsuredType<Type>;
}
case 'number[]': {
return $to.array(value).map(Number) as EnsuredType<Type>;
}
case 'bigint': {
// @ts-ignore -- BigInt may throw; ok.
return BigInt(value) as EnsuredType<Type>;
}
case 'bigint[]': {
// @ts-ignore -- BigInt may throw; ok.
return $to.array(value).map(BigInt) as EnsuredType<Type>;
}
case 'string': {
return $to.string(value) as EnsuredType<Type>;
}
case 'string[]': {
return $to.array(value).map($to.string) as EnsuredType<Type>;
}
case 'object': {
return Object(value) as EnsuredType<Type>;
}
case 'object[]': {
return $to.array(value).map(Object) as EnsuredType<Type>;
}
case 'plainObject': {
return $to.plainObject(value) as EnsuredType<Type>;
}
case 'plainObject[]': {
return $to.array(value).map((v) => $to.plainObject(v)) as EnsuredType<Type>;
}
case 'plainObjectDeep': {
return $to.plainObjectDeep(value) as EnsuredType<Type>;
}
case 'plainObjectDeep[]': {
return $to.array(value).map((v) => $to.plainObjectDeep(v)) as EnsuredType<Type>;
}
case 'unknown': {
return value as EnsuredType<Type>; // Explicitly.
}
default: {
throw Error('Y8PGpTWn'); // Unknown type: `' + type + '`.
}
}
};