fix: Backend eslint warnings
This commit is contained in:

committed by
Ömer Faruk Aydın

parent
ecc9239bfe
commit
775ac7a8b1
@@ -1,9 +1,10 @@
|
||||
import CreateTweet from './actions/create-tweet';
|
||||
import { IJSONObject } from '@automatisch/types';
|
||||
|
||||
export default class Actions {
|
||||
createTweet: any
|
||||
createTweet: CreateTweet;
|
||||
|
||||
constructor(connectionData: any, parameters: any) {
|
||||
this.createTweet = new CreateTweet(connectionData, parameters)
|
||||
constructor(connectionData: IJSONObject, parameters: IJSONObject) {
|
||||
this.createTweet = new CreateTweet(connectionData, parameters);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user