typia
Version:
Superfast runtime validators with only one line
24 lines (23 loc) • 370 B
text/typescript
export type NativeClass =
| Date
| Set<any>
| Map<any, any>
| WeakSet<any>
| WeakMap<any, any>
| Uint8Array
| Uint8ClampedArray
| Uint16Array
| Uint32Array
| BigUint64Array
| Int8Array
| Int16Array
| Int32Array
| BigInt64Array
| Float32Array
| Float64Array
| ArrayBuffer
| SharedArrayBuffer
| DataView
| Blob
| File
| RegExp;