feat: Implement initial version of processor

This commit is contained in:
Faruk AYDIN
2022-02-20 17:34:28 +03:00
committed by Ömer Faruk Aydın
parent 4a8c3988c2
commit ba2b5afe2b
5 changed files with 88 additions and 19 deletions

View File

@@ -3,13 +3,13 @@ import Triggers from './triggers';
import Actions from './actions';
export default class Twitter {
authenticationClient: any
triggers: any
actions: any
authenticationClient: any;
triggers: any;
actions: any;
constructor(connectionData: any) {
constructor(connectionData: any, parameters: any) {
this.authenticationClient = new Authentication(connectionData);
this.triggers = new Triggers(connectionData);
this.actions = new Actions(connectionData, {});
this.actions = new Actions(connectionData, parameters);
}
}