@basmilius/homey-common 1.0.2 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/device.d.ts CHANGED
@@ -5,9 +5,13 @@ import type { Language } from "./types";
5
5
  export declare class Device<TApp extends App<TApp>> extends Homey.Device {
6
6
  get app(): TApp;
7
7
  get id(): string;
8
+ get name(): string;
8
9
  get dashboards(): HomeyNS["dashboards"];
9
10
  get flow(): HomeyNS["flow"];
10
11
  get language(): Language;
12
+ removeOldCapabilities(capabilities: string[]): Promise<void>;
13
+ error(...args: any);
14
+ log(...args: any);
11
15
  }
12
16
  export declare class Driver<TApp extends App<TApp>> extends Homey.Driver {
13
17
  get app(): TApp;