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
15 lines (14 loc) • 509 B
TypeScript
import { WrappedRange } from 'augnito-dom-ranges';
import { DynamicBadge } from './DynamicBadge';
export declare class DynamicSelect {
private _ranges;
private _selectFor?;
private badges;
constructor(document: Document, _ranges: WrappedRange[], _selectFor?: string | undefined);
removeBadges(): void;
getBadge(index: number): DynamicBadge;
get selectFor(): string | undefined;
get length(): number;
private createBadgesFromRanges;
private createBadge;
}