14 lines
379 B
TypeScript
14 lines
379 B
TypeScript
import SendMessageToChannel from './actions/send-message-to-channel';
|
|
import { IJSONObject } from '@automatisch/types';
|
|
|
|
export default class Actions {
|
|
sendMessageToChannel: SendMessageToChannel;
|
|
|
|
constructor(connectionData: IJSONObject, parameters: IJSONObject) {
|
|
this.sendMessageToChannel = new SendMessageToChannel(
|
|
connectionData,
|
|
parameters
|
|
);
|
|
}
|
|
}
|