bottender
Version:
A framework for building conversational user interfaces.
9 lines • 345 B
TypeScript
import Context from '../context/Context';
import { Client, Event } from '../types';
export default class SimulatedContext<C extends Client = any, E extends Event = any> extends Context<C, E> {
_platform: string;
constructor(options: any);
get platform(): string;
sendText(): void;
}
//# sourceMappingURL=SimulatedContext.d.ts.map