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
16 lines (15 loc) • 708 B
TypeScript
import { WebClient } from '../client/WebClient';
import { AugnitoConfig } from './AugnitoConfig';
import { AugnitoMobileConfig } from './AugnitoMobileConfig';
/**
* Validates the augnito config has all the mandatory fields
* @param config The config sent by the client application
*/
declare const validateConfig: (config: AugnitoConfig) => AugnitoConfig;
/**
* Validates the mobile augnito config has all the mandatory fields
* @param webClient The AugnitoClient
* @param config The config sent by the client application
*/
declare const validateMobileConfig: (webClient: WebClient, config: AugnitoMobileConfig) => AugnitoMobileConfig;
export { validateConfig, validateMobileConfig };