UNPKG

echogarden

Version:

An easy-to-use speech toolset. Includes tools for synthesis, recognition, alignment, speech translation, language detection, source separation and more.

5 lines 287 B
export type TypedArray = Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array; export interface TypedArrayConstructor<T extends TypedArray> { new (length: number): T; } //# sourceMappingURL=TypedArray.d.ts.map