@sprucelabs/spruce-heartwood-utils 32.0.16 → 33.0.0
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import EventEmitter from 'events';
|
|
2
|
-
import { AudioController, CachedValue, Device, PowerBehaviorOptions, TheaterSettingValueTypes, TheatreSettingName } from '@sprucelabs/heartwood-view-controllers';
|
|
2
|
+
import { AudioController, CachedValue, Device, PowerBehaviorOptions, SubmitFeedbackOptions, TheaterSettingValueTypes, TheatreSettingName } from '@sprucelabs/heartwood-view-controllers';
|
|
3
3
|
import { Orientation } from '../types/heartwood.types';
|
|
4
4
|
export declare class HeartwoodDevice extends EventEmitter implements Device {
|
|
5
5
|
static Class?: new (storage: Storage) => Device;
|
|
@@ -9,6 +9,7 @@ export declare class HeartwoodDevice extends EventEmitter implements Device {
|
|
|
9
9
|
private orientation;
|
|
10
10
|
private isGettingTheatreSetting;
|
|
11
11
|
protected constructor(storage: Storage);
|
|
12
|
+
submitFeedback(_options: SubmitFeedbackOptions): void;
|
|
12
13
|
turnTorchOn(brightness?: number): void;
|
|
13
14
|
turnTorchOff(): void;
|
|
14
15
|
AudioController(mp3Url: string): Promise<AudioController>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import EventEmitter from 'events';
|
|
2
|
-
import { AudioController, CachedValue, Device, PowerBehaviorOptions, TheaterSettingValueTypes, TheatreSettingName } from '@sprucelabs/heartwood-view-controllers';
|
|
2
|
+
import { AudioController, CachedValue, Device, PowerBehaviorOptions, SubmitFeedbackOptions, TheaterSettingValueTypes, TheatreSettingName } from '@sprucelabs/heartwood-view-controllers';
|
|
3
3
|
import { Orientation } from '../types/heartwood.types';
|
|
4
4
|
export declare class HeartwoodDevice extends EventEmitter implements Device {
|
|
5
5
|
static Class?: new (storage: Storage) => Device;
|
|
@@ -9,6 +9,7 @@ export declare class HeartwoodDevice extends EventEmitter implements Device {
|
|
|
9
9
|
private orientation;
|
|
10
10
|
private isGettingTheatreSetting;
|
|
11
11
|
protected constructor(storage: Storage);
|
|
12
|
+
submitFeedback(_options: SubmitFeedbackOptions): void;
|
|
12
13
|
turnTorchOn(brightness?: number): void;
|
|
13
14
|
turnTorchOff(): void;
|
|
14
15
|
AudioController(mp3Url: string): Promise<AudioController>;
|