echogarden
Version:
An easy-to-use speech toolset. Includes tools for synthesis, recognition, alignment, speech translation, language detection, source separation and more.
5 lines (4 loc) • 311 B
TypeScript
import { EncodeIntoResult } from "./TextEncodingsCommon.js";
export declare function encodeUtf32(text: string): Uint32Array<ArrayBuffer>;
export declare function encodeUtf32Into(text: string, resultBuffer: Uint32Array): EncodeIntoResult;
export declare function decodeUtf32(encodedString: Uint32Array): string;