Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisTerBeke committed Jun 11, 2024
1 parent 84635e3 commit 3366bd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ import sourceMapSupport from 'source-map-support'
sourceMapSupport.install()

import { App } from 'homey'
const { Log } = require('homey-log')
import { Log } from 'homey-log'

Check failure on line 5 in app.ts

View workflow job for this annotation

GitHub Actions / validate

Could not find a declaration file for module 'homey-log'. '/home/runner/work/homey-remeha/homey-remeha/node_modules/homey-log/index.js' implicitly has an 'any' type.

class RemehaApp extends App {
async onInit() {
this.homeyLog = new Log({ homey: this.homey });
this.homeyLog = new Log({ homey: this.homey })

Check failure on line 9 in app.ts

View workflow job for this annotation

GitHub Actions / validate

Property 'homeyLog' does not exist on type 'RemehaApp'.
this.log('RemehaApp is running...')
}
}
Expand Down

0 comments on commit 3366bd5

Please sign in to comment.