@corti/dictation-web
Version:
Web component for Corti Dictation
18 lines (17 loc) • 598 B
TypeScript
import type { ReactiveController, ReactiveControllerHost } from "lit";
interface KeybindingControllerHost extends ReactiveControllerHost {
_pushToTalkKeybinding?: string | null;
_toggleToTalkKeybinding?: string | null;
startRecording(): void;
stopRecording(): void;
toggleRecording(): void;
dispatchEvent(event: Event): boolean;
}
export declare class KeybindingController implements ReactiveController {
#private;
host: KeybindingControllerHost;
constructor(host: KeybindingControllerHost);
hostConnected(): void;
hostDisconnected(): void;
}
export {};