import type { Serialize } from '@chzky/core'; /** ## `U8B64Converter` : Uint8Array和Base64的相互转换器 @example Usage ```ts const arr = [12, 21, 12, 1, 12, 100] const utf8 = Uint8Array.from(arr) const b64 = U8B64_Converter.serialize(utf8) const ut8 = U8B64_Converter.deserialize(b64) assertEquals(utf8, ut8) ``` @category Encode */ export declare const U8B64Converter: Serialize; //# sourceMappingURL=b64.d.ts.map