@maestro_io/maestro-web-sdk 3.1.2 → 3.1.3
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/src/index.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ declare class MaestroWebSDK implements IMaestroManager {
|
|
|
30
30
|
*/
|
|
31
31
|
static getInstance(): MaestroWebSDK;
|
|
32
32
|
userDidStartWatchingEvent(eventID: string, delegate: IMaestroEventDelegate, userSettings?: IUserSettings): Promise<IMaestroEvent>;
|
|
33
|
-
userDidStopWatchingEvent(_: string): void
|
|
33
|
+
userDidStopWatchingEvent(_: string): Promise<void>;
|
|
34
34
|
configure(configParams: SDKConfigParams): void;
|
|
35
35
|
/**
|
|
36
36
|
* Checks if this is an authorized client based on siteID
|
|
@@ -28,7 +28,7 @@ export declare class MaestroEventViewModel extends ViewModel implements IMaestro
|
|
|
28
28
|
setActivePanel(panelType: MaestroPanelType): void;
|
|
29
29
|
updatePlayerTimeCode(timestamp: number): void;
|
|
30
30
|
getPlayerTimeCode(): number | null;
|
|
31
|
-
deinit(): void
|
|
31
|
+
deinit(): Promise<void>;
|
|
32
32
|
updateKeyPlaysData(data: IMaestroKeyPlaysResponse | null): Promise<void>;
|
|
33
33
|
updateUserSettings(settings: IUserSettings): Promise<void>;
|
|
34
34
|
startFocusManagement(): Promise<void>;
|