homebridge-nanoleaf-multi 1.2.1 → 1.2.2
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/Zone.d.ts +4 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
- package/src/Zone.ts +8 -1
- package/src/platformFactory.ts +8 -2
package/dist/Zone.d.ts
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import EventEmitter from 'events';
|
|
1
3
|
import { Context, ZoneConfiguration, EffectConfiguration, EffectConfigurationBase } from './types';
|
|
2
4
|
import Effect from './Effect';
|
|
3
5
|
import SolidEffect from './SolidEffect';
|
|
4
6
|
import WaveEffect from './WaveEffect';
|
|
5
7
|
import RandomEffect from './RandomEffect';
|
|
6
|
-
export
|
|
8
|
+
export declare const ZONE_AUTO_OFF_EVENT = "zone_auto_off";
|
|
9
|
+
export default class Zone extends EventEmitter {
|
|
7
10
|
readonly configuration: ZoneConfiguration;
|
|
8
11
|
private context;
|
|
9
12
|
constructor(configuration: ZoneConfiguration, context: Context);
|