UNPKG

voxa

Version:

A fsm (state machine) framework for Alexa, Dialogflow, Facebook Messenger and Botframework apps using Node.js

10 lines (9 loc) 316 B
import { DialogflowConversation } from "actions-on-google"; import { IVoxaIntent } from "../../VoxaEvent"; export declare class DialogflowIntent implements IVoxaIntent { name: string; params: any; rawIntent: DialogflowConversation; constructor(conv: DialogflowConversation); private getParams; }