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
9 lines (8 loc) • 496 B
TypeScript
import { PrepareCommandRecipe, ActionRecipe } from '../recipe/ActionRecipe';
import { CustomCommandModel } from './utils/CustomCommandModel';
declare abstract class AugnitoCustomCommands {
static dynamicList: CustomCommandModel[] | undefined;
static addCommand(commandName: string, functionParam?: any, callback?: (param?: any) => void): void;
static prepareCustomCommandRecipe(command: PrepareCommandRecipe): Partial<ActionRecipe | null>;
}
export { AugnitoCustomCommands };