Fix lint warnings

Signed-off-by: Cameron Diver <cameron@balena.io>
This commit is contained in:
Cameron Diver 2019-04-16 11:33:35 +01:00
parent 454f82883e
commit 76034696e9
No known key found for this signature in database
GPG Key ID: 49690ED87032539F
2 changed files with 1 additions and 3 deletions

View File

@ -202,8 +202,6 @@ export class DeviceAPI {
opts: T,
logger?: Logger,
): Promise<any> {
const _ = await import('lodash');
interface ObjectWithUrl {
url?: string;
}

View File

@ -92,7 +92,7 @@ class Logger {
return this.streams.logs.write(msg + eol);
}
logLivepush(msg: string) {
public logLivepush(msg: string) {
return this.streams.livepush.write(msg + eol);
}
}