@ebonydevcopy/framework
Version:
A module-based NodeJS chatbot framework.
15 lines • 549 B
TypeScript
import GenericAdapter from '../adapter';
import { IInteraction } from '../interfaces/interactions';
declare function sender(actions: Array<IInteraction<any>>, type: 'ORDERED' | 'UNORDERED'): Promise<void>;
export default class TestAdapter extends GenericAdapter {
initialization(): void;
inputFunction(): (type: string, id: string, data: {
text: string;
} | string) => Promise<any>;
operations: {
handover: () => Promise<void>;
};
sender: typeof sender;
}
export {};
//# sourceMappingURL=test-adapter.d.ts.map