UNPKG

voxa

Version:

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

10 lines (9 loc) 411 B
import { AuthenticationBase } from "./AuthenticationBase"; import { EventBuilder } from "./proactiveEventBuilders/EventBuilder"; export declare class ProactiveEvents extends AuthenticationBase { /** * Creates proactive event * https://developer.amazon.com/docs/smapi/proactive-events-api.html */ createEvent(endpoint: string, body: EventBuilder, isDevelopment?: boolean): Promise<any>; }