UNPKG

twilly

Version:

Node.js Twilio API abstraction layer for Express applications

12 lines (11 loc) 355 B
import Action, { ActionContext } from './Action'; export interface TriggerContext extends ActionContext { triggerFlowName: string; } declare const TriggerFlowName: unique symbol; export default class Trigger extends Action { private readonly [TriggerFlowName]; constructor(triggerFlowName: string); readonly flowName: string; } export {};