UNPKG

dictate-button

Version:

Customizable Web Component that adds speech-to-text dictation capabilities to text fields

15 lines (14 loc) 322 B
export interface DictateButtonProps { size?: number; apiEndpoint?: string; language?: string; theme?: 'light' | 'dark'; class?: string; } declare module 'solid-js' { namespace JSX { interface IntrinsicElements { 'dictate-button': Element & DictateButtonProps; } } }