@sprucelabs/heartwood-view-controllers 116.0.3 → 116.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.
|
@@ -459,9 +459,9 @@ export type Locale = ILocale;
|
|
|
459
459
|
export type CachedValue = string | number | Record<string, any> | boolean | null;
|
|
460
460
|
export type TheatreSettingName = 'kiosk-mode' | 'load-url' | 'log-destination';
|
|
461
461
|
export interface TheaterSettingValueTypes {
|
|
462
|
-
'kiosk-mode': boolean;
|
|
463
|
-
'load-url': string;
|
|
464
|
-
'log-destination': string;
|
|
462
|
+
'kiosk-mode': boolean | null;
|
|
463
|
+
'load-url': string | null;
|
|
464
|
+
'log-destination': string | null;
|
|
465
465
|
}
|
|
466
466
|
export interface Device {
|
|
467
467
|
openUrl(url: string): void;
|
|
@@ -459,9 +459,9 @@ export type Locale = ILocale;
|
|
|
459
459
|
export type CachedValue = string | number | Record<string, any> | boolean | null;
|
|
460
460
|
export type TheatreSettingName = 'kiosk-mode' | 'load-url' | 'log-destination';
|
|
461
461
|
export interface TheaterSettingValueTypes {
|
|
462
|
-
'kiosk-mode': boolean;
|
|
463
|
-
'load-url': string;
|
|
464
|
-
'log-destination': string;
|
|
462
|
+
'kiosk-mode': boolean | null;
|
|
463
|
+
'load-url': string | null;
|
|
464
|
+
'log-destination': string | null;
|
|
465
465
|
}
|
|
466
466
|
export interface Device {
|
|
467
467
|
openUrl(url: string): void;
|
package/package.json
CHANGED