}
get bits (): string { return bytes.toBin(this.#bytes) }
get buffer (): ArrayBuffer { return this.#bytes.buffer }
+ get byteLength (): number { return this.#bytes.byteLength }
get bytes (): Uint8Array<ArrayBuffer> { return this.#bytes }
get hex (): string { return bytes.toHex(this.#bytes) }
* @param {string} hex - Hexadecimal string
*/
constructor (hex: string)
+ constructor (input?: unknown)
constructor (input?: unknown) {
if (input == null) {