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) • 362 B
TypeScript
export interface Process {
env: any;
}
export interface Context {
args: any;
process: Process;
}
export declare class NaturalLanguageProviderClient {
static request(context: Context): Promise<any>;
static processBody(args: any): {
event: any;
text?: undefined;
} | {
text: any;
event?: undefined;
};
}