vosk-browser
Version:
Kaldi in-browser speech recognition based on a WASM build of the Vosk library
12 lines (11 loc) • 336 B
TypeScript
export declare class Logger {
private logLevel;
constructor(logLevel?: number);
getLogLevel(): number;
setLogLevel(level: number): void;
error(message: string): void;
warn(message: string): void;
info(message: string): void;
verbose(message: string): void;
debug(message: string): void;
}