This commit is contained in:
dela
2026-02-21 18:27:49 +08:00
parent 0ac4b23f07
commit 5dc86ccfbf
270 changed files with 49508 additions and 4636 deletions

View File

@@ -0,0 +1,7 @@
export declare function utf8Count(str: string): number;
export declare function utf8EncodeJs(str: string, output: Uint8Array, outputOffset: number): void;
export declare function utf8EncodeTE(str: string, output: Uint8Array, outputOffset: number): void;
export declare function utf8Encode(str: string, output: Uint8Array, outputOffset: number): void;
export declare function utf8DecodeJs(bytes: Uint8Array, inputOffset: number, byteLength: number): string;
export declare function utf8DecodeTD(bytes: Uint8Array, inputOffset: number, byteLength: number): string;
export declare function utf8Decode(bytes: Uint8Array, inputOffset: number, byteLength: number): string;