UNPKG

@aurally/speech-control

Version:

A class to handle microphone permissions, start and observe speech input

11 lines (10 loc) 335 B
export interface INotificationResult { disable: Promise<any>; } export interface INotification { container?: HTMLElement | null; text?: string; disableText?: string; } export declare const append: (notificationOptions?: INotification) => Promise<INotificationResult>; export declare const remove: () => void;