mirror of
https://gitee.com/onvia/ccc-tnt-psd2ui
synced 2024-12-28 20:47:43 +00:00
6 lines
337 B
TypeScript
6 lines
337 B
TypeScript
|
/// <reference types="node" />
|
||
|
export declare function stringLengthInBytes(value: string): number;
|
||
|
export declare function encodeStringTo(buffer: Uint8Array | Buffer, offset: number, value: string): number;
|
||
|
export declare function encodeString(value: string): Uint8Array;
|
||
|
export declare function decodeString(value: Uint8Array): string;
|