recime-bot-runtime
Version:
This runtime is intended to run inside a micro-service container with platform specific integration and module interpreter.
17 lines (16 loc) • 326 B
TypeScript
export interface Bot {
id: any;
userId: any;
config: any;
region: any;
meta: any;
name: String;
description: String;
}
export declare class BotModel {
private id;
constructor(id: any);
get(): Promise<Bot>;
logIntentHit(name: any): any;
logUnhandledMessage(message: any): any;
}