@svta/common-media-library
Version:
A common library for media playback in JavaScript
15 lines • 379 B
TypeScript
/**
* Decodes a hexadecimal string into an ArrayBuffer.
*
* @param hex - The hexadecimal string to decode.
* @returns The decoded ArrayBuffer.
*
* @group Utils
*
* @beta
*
* @example
* {@includeCode ../../test/utils/hexToArrayBuffer.test.ts#example}
*/
export declare function hexToArrayBuffer(hex: string): ArrayBuffer;
//# sourceMappingURL=hexToArrayBuffer.d.ts.map