import "./_dnt.polyfills.js"; /** * 将二进制转成 base64 字符串 */ export declare const binary_to_base64_string: (u8a: Uint8Array) => string; /** * 将二进制转成 hex(小写) 字符串 */ export declare const binary_to_hex_string: (u8a: Uint8Array) => string; /** * 将二进制转成 utf8 字符串 */ export declare const binary_to_utf8_string: (u8a: Uint8Array) => string; /** * 将 base64 字符串转成二进制 */ export declare const str_to_base64_binary: (str: string) => Uint8Array; /** * 将 hex(小写) 字符串转成二进制 */ export declare const str_to_hex_binary: (str: string) => Uint8Array; /** * 将 utf8 字符串转成二进制 */ export declare const str_to_utf8_binary: (str: string) => Uint8Array; //# sourceMappingURL=encoding.d.ts.map