UNPKG

ng-voice-inputs

Version:

This library provides Voice Recognition service to fill the form input fields (text, datepicker, textarea, button-click) for Angular application.

13 lines (12 loc) 297 B
/** * @param type Type of response * Possible values for type are: * 'date-range', 'date', 'text', 'number' * @param value Response value which can be text, number, date * */ export default class VuiResponse { type: string; value: any; constructor(type?: string, value?: any); }