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
10 lines (9 loc) • 524 B
TypeScript
import { PrepareCommandRecipe, ActionRecipe } from '../recipe/ActionRecipe';
declare abstract class AugnitoCommandsRegex {
static prepareRecipe(command: PrepareCommandRecipe): Partial<ActionRecipe>;
static fillDynamicCommand(recipe: Partial<ActionRecipe>, commandText: string): Partial<ActionRecipe>;
static setActionCommandVariant(cmdAction: string): string;
static setActiveObjectType(item: string): string;
static setSelectObjectType(item: string): string;
}
export { AugnitoCommandsRegex };