@corti/dictation-web
Version:
Web component for Corti Dictation
15 lines (14 loc) • 480 B
TypeScript
import { LitElement } from "lit";
import "./keybinding-input.js";
export declare class DictationKeybindingSelector extends LitElement {
_pushToTalkKeybinding?: string | null;
_toggleToTalkKeybinding?: string | null;
disabled: boolean;
static styles: import("lit").CSSResult[];
render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
"dictation-keybinding-selector": DictationKeybindingSelector;
}
}