@technobuddha/library
Version:
A large library of useful functions
11 lines (10 loc) • 429 B
TypeScript
/**
* A type that represents various binary object types in JavaScript.
* @see {@link dataURL}
* @see {@link normalizeBinary}
* @see {@link encodeBase64}
* @see {@link encodeBase64Url}
* @group Binary
* @category Container
*/
export type BinaryObject = ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float16Array | Float32Array | Float64Array;