augnitosdk
Version:
AugnitoSDK lets you make use of the Speech Recognition AI. You can edit, format and complete reports at the speed of human speech, with the best-in-class accuracy
11 lines (10 loc) • 366 B
TypeScript
declare abstract class BaseInteropProcessor {
private _logTag;
private _loggingEnabled;
get loggingEnabled(): boolean;
set loggingEnabled(enabled: boolean);
constructor(loggingEnabled: boolean, interopTag: string);
protected log(message: string): void;
protected error(message: string): void;
}
export { BaseInteropProcessor };