16 lines
416 B
TypeScript
16 lines
416 B
TypeScript
import Authentication from './authentication';
|
|
import Triggers from './triggers';
|
|
import Actions from './actions';
|
|
|
|
export default class Twitter {
|
|
authenticationClient: any
|
|
triggers: any
|
|
actions: any
|
|
|
|
constructor(connectionData: any) {
|
|
this.authenticationClient = new Authentication(connectionData);
|
|
this.triggers = new Triggers(connectionData);
|
|
this.actions = new Actions(connectionData);
|
|
}
|
|
}
|