fix: Backend eslint warnings
This commit is contained in:

committed by
Ömer Faruk Aydın

parent
ecc9239bfe
commit
775ac7a8b1
@@ -1,9 +1,15 @@
|
||||
import Authentication from './authentication';
|
||||
import {
|
||||
IService,
|
||||
IAuthentication,
|
||||
IApp,
|
||||
IJSONObject,
|
||||
} from '@automatisch/types';
|
||||
|
||||
export default class Flickr {
|
||||
authenticationClient: any;
|
||||
export default class Flickr implements IService {
|
||||
authenticationClient: IAuthentication;
|
||||
|
||||
constructor(appData: any, connectionData: any) {
|
||||
constructor(appData: IApp, connectionData: IJSONObject) {
|
||||
this.authenticationClient = new Authentication(appData, connectionData);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user