fix: Backend eslint warnings
This commit is contained in:

committed by
Ömer Faruk Aydın

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