UNPKG

recime-bot-runtime

Version:

This runtime is intended to run inside a micro-service container with platform specific integration and module interpreter.

18 lines (17 loc) 456 B
import { Vars } from './vars'; import { Context } from './responder'; export interface RequestOptions { context: Context; user: any; vars: Vars; nlp: any; } export declare class Request { private options; private responder; constructor(responder: any, options: RequestOptions); normalizeButton(__: any, content: any): any; send(__: any, res: any): any; break(): string; processStickerIds(content: any): any[]; }