UNPKG

recime-bot-runtime

Version:

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

10 lines (9 loc) 240 B
export declare class Vars { sender: any; values: any; constructor(sender: any, values: any); get(key: any): any; set(key: any, value: any): void; post(key: any, value: any): Promise<{}>; unset(key: any): void; }