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
22 lines (21 loc) • 989 B
TypeScript
declare abstract class InteropProcessorCommon {
/**
* @description
* Makes First Letter in Capital
*
* @param {String} newProcessText The text received
* @param {Number} position The starting position
*/
static capitalizeFirstLetter(newProcessText: string, position: number): string;
static beautify(newProcessText: string): string;
/** Some beautification */
static processText: (newProcessText: string, IsLastFullstop: boolean, IsLastNewLine: boolean, currentPosition: number, cursorInSameLine: boolean, IsLastSpace: boolean) => string;
static ProcessText: (receivedText: any, lastCharList: any, documentTextLength: any, interval: any) => {
ReceivedText: any;
EndLine: boolean;
};
static trimWithoutNewLine: (newProcessText: string) => string;
static lTrim: (text: string) => string;
static replaceSpaceAfterNewline: (text: string) => string;
}
export { InteropProcessorCommon };