UNPKG

reshuffle

Version:

Reshuffle is a fast, unopinionated, minimalist integration framework

10 lines (9 loc) 389 B
import { BaseConnector, EventConfiguration } from 'reshuffle-base-connector'; import Reshuffle from '../Reshuffle'; export default class SlackConnector extends BaseConnector { on(options: any, eventId: EventConfiguration['id']): EventConfiguration; send(message: string): void; start(app: Reshuffle): void; removeEvent(event: EventConfiguration): void; stop(): void; }