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
14 lines (13 loc) • 512 B
TypeScript
import { MobileClient } from './client/MobileClient';
export declare class AugnitoMobile {
private _mobileClient;
/** Callback when a mobile client is requesting to connect */
onConnectionRequest?: () => void;
/** Callback when a mobile client has scanned the QR Code */
onMobileScan?: () => void;
constructor(_mobileClient: MobileClient);
dispose(): void;
stopMobileMicConnection(): void;
private onConnectionRequestCallback;
private onMobileScanCallback;
}