cleanup types

This commit is contained in:
2025-02-03 10:29:33 +01:00
parent 4c61c067e6
commit 91693e55e1
7 changed files with 23 additions and 38 deletions

View File

@@ -8,17 +8,6 @@ export const isBrowser = typeof window !== 'undefined'
*/
export type PromiseOrValue<T> = T | Promise<T>
export type TypedArray =
| Int8Array
| Uint8Array
| Uint8ClampedArray
| Int16Array
| Uint16Array
| Int32Array
| Uint32Array
| BigInt64Array
| BigUint64Array
/**
* @internal
*/