UNPKG

homey

Version:

Command-line interface and type declarations for Homey Apps

15 lines (10 loc) 232 B
'use strict'; const Homey = require('homey'); module.exports = class MyApp extends Homey.App { /** * onInit is called when the app is initialized. */ async onInit() { this.log('MyApp has been initialized'); } };