11 lines
305 B
TypeScript
11 lines
305 B
TypeScript
import CreateTweet from './actions/create-tweet';
|
|
import { IJSONObject } from '@automatisch/types';
|
|
|
|
export default class Actions {
|
|
createTweet: CreateTweet;
|
|
|
|
constructor(connectionData: IJSONObject, parameters: IJSONObject) {
|
|
this.createTweet = new CreateTweet(connectionData, parameters);
|
|
}
|
|
}
|