twilly
Version:
Node.js Twilio API abstraction layer for Express applications
12 lines (11 loc) • 359 B
TypeScript
import Flow from '../Flow';
export interface FlowSchemaParams {
[index: string]: Flow | FlowSchema;
}
declare const FlowSchemaValidateInput: unique symbol;
export default class FlowSchema {
readonly schema: FlowSchemaParams;
static [FlowSchemaValidateInput](schema: FlowSchemaParams): void;
constructor(schema: FlowSchemaParams);
}
export {};