/** ***************************************** * 抛出接口 ***************************************** */ export declare const utf8: { encode: typeof encode; decode: typeof decode; }; /** ***************************************** * 编码数据 ***************************************** */ export declare function encode(str: string): number[]; /** ***************************************** * 解码数据 ***************************************** */ export declare function decode(arr: ArrayLike, start?: number, end?: number): string; //# sourceMappingURL=utf8.d.ts.map