10 lines
182 B
TypeScript
10 lines
182 B
TypeScript
import MyTweet from './triggers/my-tweet';
|
|
|
|
export default class Triggers {
|
|
myTweet: any
|
|
|
|
constructor(connectionData: any) {
|
|
this.myTweet = new MyTweet(connectionData)
|
|
}
|
|
}
|