UntisBot/src/class/ConnectionModule.ts

7 lines
231 B
TypeScript

import { Connection } from './User';
import NotificationMessage from './NotificationMessage';
export default class ConnectionModule {
run: (message: NotificationMessage, connection: Connection) => void;
init: () => void;
}