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
28 lines (27 loc) • 500 B
TypeScript
/**
* @description
* Current Status of the Microphone
*/
declare enum AugnitoStatus {
/**
* @description
* Microphone is On
*/
ON = "On",
/**
* @description
* Microphone is Off
*/
OFF = "Off",
/**
* @description
* Microphone is Off
*/
REQUEST_OFF = "RequestOff",
/**
* @description
* KEY TO be used in localstorage
*/
KEY = "AugnitoConnectionStatus"
}
export { AugnitoStatus };