@vkontakte/videoplayer-interactive 1.0.39-dev.de950202.0 → 1.0.39-dev.f4da114d.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.
Files changed (28) hide show
  1. package/es2015.cjs.js +111 -10
  2. package/es2015.esm.js +111 -10
  3. package/es2018.cjs.js +111 -10
  4. package/es2018.esm.js +111 -10
  5. package/es2024.cjs.js +111 -10
  6. package/es2024.esm.js +111 -10
  7. package/esnext.cjs.js +111 -10
  8. package/esnext.esm.js +111 -10
  9. package/evergreen.esm.js +111 -10
  10. package/package.json +4 -4
  11. package/types/modules/Interactives/Interactives.d.ts +8 -4
  12. package/types/modules/Interactives/containers/ChoiceContainer.d.ts +9 -6
  13. package/types/modules/Interactives/containers/Container.d.ts +4 -0
  14. package/types/modules/Interactives/containers/types.d.ts +2 -1
  15. package/types/modules/Interactives/controls/AreaControl.d.ts +3 -1
  16. package/types/modules/Interactives/controls/ButtonControl.d.ts +8 -2
  17. package/types/modules/Interactives/controls/Control.d.ts +9 -4
  18. package/types/modules/Interactives/controls/TextControl.d.ts +2 -1
  19. package/types/modules/Interactives/controls/types.d.ts +1 -1
  20. package/types/modules/Interactives/index.d.ts +20 -5
  21. package/types/modules/Interactives/types.d.ts +3 -0
  22. package/types/modules/Interactives/utils/ControlFillAnimation/ControlFillAnimation.d.ts +34 -0
  23. package/types/modules/Interactives/utils/ControlFillAnimation/index.d.ts +1 -0
  24. package/types/modules/Interactives/utils/ControlFillAnimation/utils.d.ts +12 -0
  25. package/types/modules/Interactives/utils/GameController.d.ts +11 -4
  26. package/types/modules/Interactives/utils/angleUtils.d.ts +23 -0
  27. package/types/modules/Interactives/utils/emitOnError.d.ts +13 -0
  28. package/types/modules/Interactives/utils/gameUtils.d.ts +1 -0
@@ -95,12 +95,16 @@ export declare class Interactives {
95
95
  *
96
96
  * Контрол считается удалённым, если его флаг `isRemoved` установлен в `true`.
97
97
  * Однако, есть исключение для `openURI` — если с ним было взаимодействие, он
98
- * получит `isRemoved = true`, но может оставаться в DOM до завершения эпизода (`endTime`).
98
+ * получит `isRemoved = true`, но может оставаться в DOM до завершения эпизода
99
+ * (`endTime`).
99
100
  *
100
- * Из-за этого метод может вернуть `true` (что все контроллы "удалены"),
101
- * хотя `openURI` всё ещё присутствует в DOM.
101
+ * Из-за этого метод может вернуть `true` (что все контроллы "удалены"), хотя
102
+ * `openURI` всё ещё присутствует в DOM.
103
+ *
104
+ * includeWillRemovedState - нужно ли считать состояние 'willRemoved' как
105
+ * 'removed'
102
106
  */
103
- allControlsAreRemoved(): boolean;
107
+ allControlsAreRemoved(includeWillRemovedState?: boolean): boolean;
104
108
  isEndedExpectation(): boolean;
105
109
  playPrevChapter(): void;
106
110
  setDisabledControls(value: boolean): void;
@@ -1,25 +1,28 @@
1
- import { Subject } from '@vkontakte/videoplayer-shared';
2
1
  import { Container } from './Container';
3
2
  import { ChapterContainer } from '../../../manifest';
4
3
  import type { ChoiceContainerOptions, ContainerCreateViewParams } from './types';
5
- import { CustomError } from '../../../utils/Error';
6
4
  import { Nullable } from '@vkontakte/videoplayer-shared';
7
5
  export declare const createChoiceContainer: (container: ChapterContainer, rootElement: HTMLElement, options?: ChoiceContainerOptions) => ChoiceContainer | undefined;
8
6
  export declare class ChoiceContainer extends Container {
9
7
  private rootElement;
10
8
  private containerElement;
11
9
  private layout;
12
- private controlSubscriptions;
10
+ private subscriptions;
13
11
  isRemoved: boolean;
14
12
  isDisabled: boolean;
15
- error$: Subject<CustomError>;
13
+ willRemoved: boolean;
16
14
  constructor(container: ChapterContainer, rootElement: HTMLElement, options?: ChoiceContainerOptions);
17
- createView({ eventCallback }: ContainerCreateViewParams): HTMLElement;
15
+ createView({ eventCallback, videoDurationMs }: ContainerCreateViewParams): HTMLElement;
16
+ updateControlsFillAnimationDimensions(): void;
18
17
  hide(): void;
19
18
  show(): void;
20
19
  enable(): void;
21
20
  disable(): void;
22
- removeView(): void;
21
+ removeView(withTransition?: boolean, useDelay?: boolean): void;
22
+ private onTransitionEnd;
23
+ removeAllControls(withTransition?: boolean): void;
24
+ removeNonInteractedControls(withTransition?: boolean): void;
25
+ isInteracted(): boolean;
23
26
  fakeRemove(): void;
24
27
  getElement(): Nullable<HTMLElement>;
25
28
  onProgress(currentTimeMs: number, isInteractiveTime: boolean): void;
@@ -1,3 +1,5 @@
1
+ import { Subject } from '@vkontakte/videoplayer-shared';
2
+ import { CustomError } from '../../../utils/Error';
1
3
  import type { ChapterContainer } from '../../../manifest';
2
4
  import { type Control, type ControlCreator, type Options } from '../../../modules/Interactives/controls';
3
5
  import { type ChoiceContainerOptions } from './types';
@@ -6,8 +8,10 @@ export declare class Container {
6
8
  options?: Options;
7
9
  private factories;
8
10
  controls: Control[];
11
+ error$: Subject<CustomError>;
9
12
  constructor(container: ChapterContainer, options?: Options);
10
13
  featureIsEnabled(name: keyof ChoiceContainerOptions['features']): boolean | undefined;
14
+ onError(message: string | undefined, error: unknown): void;
11
15
  addControlFactory(type: string, factory: ControlCreator<any>): void;
12
16
  removeControlFactory(type: string): void;
13
17
  private setControls;
@@ -2,9 +2,10 @@ import { Options, ControlEventCallback } from '../controls';
2
2
  import { AnimationsFeatureToggles } from '../types';
3
3
  export type ChoiceContainerOptions = {
4
4
  isTouch: boolean;
5
- features: Pick<AnimationsFeatureToggles, 'controlsExpectTimeBlinkAnimation' | 'controlsTapPlace'>;
5
+ features: Pick<AnimationsFeatureToggles, 'controlsExpectTimeBlinkAnimation' | 'controlsTapPlace' | 'controlsFillAnimation'>;
6
6
  };
7
7
  export declare function isChoiceContainerOptions(options: Options): options is ChoiceContainerOptions;
8
8
  export type ContainerCreateViewParams = {
9
9
  eventCallback: ControlEventCallback;
10
+ videoDurationMs: number;
10
11
  };
@@ -4,7 +4,7 @@ export declare const createAreaControl: ControlCreator<ControlOptions, AreaContr
4
4
  declare class AreaControl extends Control {
5
5
  constructor(control: TControl, options?: ControlOptions);
6
6
  createView({ parentElement, callbacks }: ControlCreateViewParams): void;
7
- registerEvents(): void;
7
+ registerBlinkAnimationEvents(): void;
8
8
  disable(): void;
9
9
  enable(): void;
10
10
  getElement(): import("@vkontakte/videoplayer-shared").Nullable<HTMLElement>;
@@ -12,6 +12,8 @@ declare class AreaControl extends Control {
12
12
  toggleBlinkAnimation(enable?: boolean): void;
13
13
  syncBlinkAnimation(refAnim: HTMLElement): void;
14
14
  onBlinkHovering(): void;
15
+ setShowTimeRange(): void;
16
+ updateFillAnimationDimensions(): void;
15
17
  onProgress(): void;
16
18
  onResize(): void;
17
19
  }
@@ -1,17 +1,23 @@
1
1
  import { Control } from './Control';
2
2
  import { type ControlCreator, type ControlCreateViewParams, type TControl, type ControlOptions } from './types';
3
+ import { ControlFillAnimation } from '../utils/ControlFillAnimation';
3
4
  export declare const createButtonControl: ControlCreator<ControlOptions, ButtonControl>;
4
5
  declare class ButtonControl extends Control {
6
+ startTime?: number;
7
+ endTime?: number;
8
+ controlFillAnimation?: ControlFillAnimation;
5
9
  constructor(control: TControl, options?: ControlOptions);
6
10
  createView({ parentElement, callbacks }: ControlCreateViewParams): void;
7
- registerEvents(): void;
11
+ registerBlinkAnimationEvents(): void;
8
12
  disable(): void;
9
13
  enable(): void;
10
14
  getElement(): import("@vkontakte/videoplayer-shared").Nullable<HTMLElement>;
11
15
  toggleBlinkAnimation(enable?: boolean): void;
12
16
  syncBlinkAnimation(refAnim: HTMLElement): void;
13
17
  onBlinkHovering(): void;
14
- onProgress(): void;
18
+ updateFillAnimationDimensions(): void;
19
+ setShowTimeRange(startTime: number, endTime: number): void;
20
+ onProgress(currentTime: number): void;
15
21
  onResize(): void;
16
22
  updateShadowStyles(): void;
17
23
  }
@@ -1,8 +1,7 @@
1
- import { Subject, Subscription, ValueSubject } from '@vkontakte/videoplayer-shared';
1
+ import { Subject, Subscription, Nullable } from '@vkontakte/videoplayer-shared';
2
+ import { CustomError } from '../../../utils/Error';
2
3
  import { ControlTap } from '../utils/ControlTap';
3
4
  import type { ControlEventCallback, ControlCreateViewParams, Dimensions, Callbacks, Options, TControl, ControlOptions } from './types';
4
- import { CustomError } from '../../../utils/Error';
5
- import { Nullable } from '@vkontakte/videoplayer-shared';
6
5
  type ControlContainer = {
7
6
  element: HTMLElement;
8
7
  dimensions: Dimensions;
@@ -16,8 +15,9 @@ export declare abstract class Control {
16
15
  controlElement: Nullable<HTMLElement>;
17
16
  subscriptions: Subscription;
18
17
  error$: Subject<CustomError>;
19
- isInteracted$: ValueSubject<boolean>;
20
18
  controlTap?: ControlTap;
19
+ isInteracted: boolean;
20
+ isRemoved: boolean;
21
21
  constructor(control: TControl, options?: Options | undefined);
22
22
  abstract createView(params: ControlCreateViewParams): void;
23
23
  abstract getElement(): Nullable<HTMLElement>;
@@ -25,8 +25,13 @@ export declare abstract class Control {
25
25
  abstract enable(): void;
26
26
  abstract onProgress(currentTimeMs: number): void;
27
27
  abstract onResize(): void;
28
+ abstract setShowTimeRange(startTime: number, endTime: number): void;
29
+ abstract updateFillAnimationDimensions(): void;
28
30
  abstract updateShadowStyles(isDark?: boolean): void;
29
31
  abstract toggleBlinkAnimation(enable?: boolean): void;
32
+ onControlSelect: () => void;
33
+ removeView(withTransition?: boolean): void;
34
+ onTransitionEnd: (event: TransitionEvent) => void;
30
35
  onError(message: string | undefined, error: unknown): void;
31
36
  addControlTap(controlElement: HTMLElement): void;
32
37
  createContainerElement(callbacks: Callbacks): void;
@@ -11,6 +11,7 @@ declare class TextControl extends Control {
11
11
  onResize(): void;
12
12
  updateShadowStyles(): void;
13
13
  toggleBlinkAnimation(): void;
14
- onError(): void;
14
+ setShowTimeRange(): void;
15
+ updateFillAnimationDimensions(): void;
15
16
  }
16
17
  export {};
@@ -23,7 +23,7 @@ export type ControlCreateViewParams = {
23
23
  export type Options = Record<string, unknown>;
24
24
  export type ControlOptions = {
25
25
  isTouch: boolean;
26
- features: Pick<AnimationsFeatureToggles, 'controlsExpectTimeBlinkAnimation' | 'controlsTapPlace'>;
26
+ features: Pick<AnimationsFeatureToggles, 'controlsExpectTimeBlinkAnimation' | 'controlsTapPlace' | 'controlsFillAnimation'>;
27
27
  };
28
28
  export declare function isControlOptions(options: Options): options is ControlOptions;
29
29
  type ControlEventCallbackParams = {
@@ -9,7 +9,7 @@ export declare const utils: {
9
9
  createChoiceContainer: (container: import("@interactiveplatform/movika-manifest").ChapterContainer, rootElement: HTMLElement, options?: import("./containers/types").ChoiceContainerOptions) => import("./containers/ChoiceContainer").ChoiceContainer | undefined;
10
10
  createAreaControl: import("./controls").ControlCreator<import("./controls").ControlOptions, {
11
11
  createView({ parentElement, callbacks }: import("./controls").ControlCreateViewParams): void;
12
- registerEvents(): void;
12
+ registerBlinkAnimationEvents(): void;
13
13
  disable(): void;
14
14
  enable(): void;
15
15
  getElement(): import("@vkontakte/videoplayer-shared").Nullable<HTMLElement>;
@@ -17,6 +17,8 @@ export declare const utils: {
17
17
  toggleBlinkAnimation(enable?: boolean): void;
18
18
  syncBlinkAnimation(refAnim: HTMLElement): void;
19
19
  onBlinkHovering(): void;
20
+ setShowTimeRange(): void;
21
+ updateFillAnimationDimensions(): void;
20
22
  onProgress(): void;
21
23
  onResize(): void;
22
24
  container: import("@vkontakte/videoplayer-shared").Nullable<{
@@ -27,10 +29,14 @@ export declare const utils: {
27
29
  controlElement: import("@vkontakte/videoplayer-shared").Nullable<HTMLElement>;
28
30
  subscriptions: import("@vkontakte/videoplayer-shared").Subscription;
29
31
  error$: import("@vkontakte/videoplayer-shared").Subject<import("../..").CustomError>;
30
- isInteracted$: import("@vkontakte/videoplayer-shared").ValueSubject<boolean>;
31
32
  controlTap?: import("./utils/ControlTap").ControlTap;
33
+ isInteracted: boolean;
34
+ isRemoved: boolean;
32
35
  control: import("@interactiveplatform/movika-manifest/dist/chapter-DI_7rDZW").e;
33
36
  options?: import("./controls").Options | undefined;
37
+ onControlSelect: () => void;
38
+ removeView(withTransition?: boolean): void;
39
+ onTransitionEnd: (event: TransitionEvent) => void;
34
40
  onError(message: string | undefined, error: unknown): void;
35
41
  addControlTap(controlElement: HTMLElement): void;
36
42
  createContainerElement(callbacks: import("./controls").Callbacks): void;
@@ -41,15 +47,20 @@ export declare const utils: {
41
47
  removeListeners(): void;
42
48
  }>;
43
49
  createButtonControl: import("./controls").ControlCreator<import("./controls").ControlOptions, {
50
+ startTime?: number;
51
+ endTime?: number;
52
+ controlFillAnimation?: import("./utils/ControlFillAnimation").ControlFillAnimation;
44
53
  createView({ parentElement, callbacks }: import("./controls").ControlCreateViewParams): void;
45
- registerEvents(): void;
54
+ registerBlinkAnimationEvents(): void;
46
55
  disable(): void;
47
56
  enable(): void;
48
57
  getElement(): import("@vkontakte/videoplayer-shared").Nullable<HTMLElement>;
49
58
  toggleBlinkAnimation(enable?: boolean): void;
50
59
  syncBlinkAnimation(refAnim: HTMLElement): void;
51
60
  onBlinkHovering(): void;
52
- onProgress(): void;
61
+ updateFillAnimationDimensions(): void;
62
+ setShowTimeRange(startTime: number, endTime: number): void;
63
+ onProgress(currentTime: number): void;
53
64
  onResize(): void;
54
65
  updateShadowStyles(): void;
55
66
  container: import("@vkontakte/videoplayer-shared").Nullable<{
@@ -60,10 +71,14 @@ export declare const utils: {
60
71
  controlElement: import("@vkontakte/videoplayer-shared").Nullable<HTMLElement>;
61
72
  subscriptions: import("@vkontakte/videoplayer-shared").Subscription;
62
73
  error$: import("@vkontakte/videoplayer-shared").Subject<import("../..").CustomError>;
63
- isInteracted$: import("@vkontakte/videoplayer-shared").ValueSubject<boolean>;
64
74
  controlTap?: import("./utils/ControlTap").ControlTap;
75
+ isInteracted: boolean;
76
+ isRemoved: boolean;
65
77
  control: import("@interactiveplatform/movika-manifest/dist/chapter-DI_7rDZW").e;
66
78
  options?: import("./controls").Options | undefined;
79
+ onControlSelect: () => void;
80
+ removeView(withTransition?: boolean): void;
81
+ onTransitionEnd: (event: TransitionEvent) => void;
67
82
  onError(message: string | undefined, error: unknown): void;
68
83
  addControlTap(controlElement: HTMLElement): void;
69
84
  createContainerElement(callbacks: import("./controls").Callbacks): void;
@@ -19,6 +19,8 @@ export type AnimationsFeatureToggles = Partial<{
19
19
  areaControlShadow: boolean;
20
20
  controlsExpectTimeBlinkAnimation: boolean;
21
21
  controlsTapPlace: boolean;
22
+ controlsFillAnimation: boolean;
23
+ controlsHideAnimation: boolean;
22
24
  }>;
23
25
  export interface IInteractiveOptions {
24
26
  parentElement: HTMLElement;
@@ -45,6 +47,7 @@ export interface IInteractiveOptions {
45
47
  * @deprecated
46
48
  * */
47
49
  disableControlsOnPause?: boolean;
50
+ disableTextControlContainerVisibilityEvents?: boolean;
48
51
  isTouch?: boolean;
49
52
  animationsFeatureToggles?: AnimationsFeatureToggles;
50
53
  }
@@ -0,0 +1,34 @@
1
+ export type Options = {
2
+ startTime: number;
3
+ endTime: number;
4
+ rotateAngle: number;
5
+ borderRadius: string;
6
+ debug?: boolean;
7
+ };
8
+ export declare class ControlFillAnimation {
9
+ fillAnimationElement: HTMLDivElement;
10
+ private fillAnimationFillerElement;
11
+ private fillAnimationFillerWrapperElement;
12
+ private startTime;
13
+ private endTime;
14
+ private shouldFillHeight;
15
+ private widthExpansionCoef;
16
+ private isDebug;
17
+ private fromLeft;
18
+ private useSkew;
19
+ private rotateAngle;
20
+ constructor(opts: Options);
21
+ updateDimension(opts: {
22
+ width: number;
23
+ height: number;
24
+ borderWidth: number;
25
+ }): void;
26
+ updateAnimation(currentTime: number): void;
27
+ /**
28
+ * Когда мы применяем scew для контрол, расстояние между крайними left & right
29
+ * точками становится больше. Это значит, что нужно увеличивать
30
+ * элемент-заполнитель, чтобы он заполнял контрол полностью. Этот метод
31
+ * возвращает коэффцицент увеличения для элемента-заполнителя.
32
+ */
33
+ private calcWidthExpansionCoef;
34
+ }
@@ -0,0 +1 @@
1
+ export * from './ControlFillAnimation';
@@ -0,0 +1,12 @@
1
+ export declare const CONTROL_FILL_ANIMATION_CLASSNAME_PREFIX = "interactive-control-fill-animation";
2
+ export declare const controlFillAnimationClassNames: {
3
+ common: string;
4
+ fillerWrapper: string;
5
+ filler: string;
6
+ fillHeight: string;
7
+ fillWidth: string;
8
+ fromTop: string;
9
+ fromBottom: string;
10
+ fromLeft: string;
11
+ fromRight: string;
12
+ };
@@ -5,10 +5,11 @@ import type { ChapterBranch } from '../../../manifest';
5
5
  import type { EventEmitter } from '../../../utils/EventEmitter';
6
6
  import { CustomError } from '../../../utils/Error';
7
7
  import type { SelectBranchesType } from './SelectBranches';
8
- import type { IgnoreExpectState } from '../../../modules/Interactives/types';
8
+ import type { IgnoreExpectState, AnimationsFeatureToggles } from '../../../modules/Interactives/types';
9
9
  import type { ChoiceContainer } from '../../../modules/Interactives/containers';
10
10
  import { type GlobalEvents } from './events';
11
11
  import { GameStates } from './gameUtils';
12
+ type Features = Pick<AnimationsFeatureToggles, 'controlsHideAnimation'>;
12
13
  type ConstructorArg = {
13
14
  player: IPlayer;
14
15
  container: ChoiceContainer;
@@ -23,6 +24,8 @@ type ConstructorArg = {
23
24
  disabledControls$: IValueSubject<boolean>;
24
25
  onRemove: () => void;
25
26
  onError: (error: CustomError) => void;
27
+ disableTextControlContainerVisibilityEvents?: boolean;
28
+ features: Features;
26
29
  };
27
30
  export declare class GameController {
28
31
  container: ChoiceContainer;
@@ -42,7 +45,9 @@ export declare class GameController {
42
45
  isSelectedContainerEvent: boolean;
43
46
  globalEvents: GlobalEvents;
44
47
  onError: ConstructorArg['onError'];
45
- constructor({ player, container, branches, selectBranches, interactiveEvents, globalEvents, globalEventEmitter, getContainerEventState, permanentTextControls, interactiveTimeOpenUri, disabledControls$, onRemove, onError, }: ConstructorArg);
48
+ disableTextControlContainerVisibilityEvents: boolean;
49
+ features: Features;
50
+ constructor({ player, container, branches, selectBranches, interactiveEvents, globalEvents, globalEventEmitter, getContainerEventState, permanentTextControls, interactiveTimeOpenUri, disabledControls$, onRemove, onError, disableTextControlContainerVisibilityEvents, features, }: ConstructorArg);
46
51
  private emitContainerVisibilityEvent;
47
52
  registerEvents(): void;
48
53
  hide: () => void;
@@ -55,10 +60,12 @@ export declare class GameController {
55
60
  whilePlaying: () => void;
56
61
  onResize(isInteractiveTime: boolean): void;
57
62
  reset(): void;
58
- removeView(): void;
63
+ removeView(withTransition?: boolean | undefined): void;
59
64
  fakeRemoveView(remove?: boolean): void;
60
65
  updateControlsShadowStyles(isDark?: boolean): void;
61
66
  toggleBlinkAnimation(value: boolean): void;
62
- destroy(): void;
67
+ isInteracted(): boolean;
68
+ isRemovedOrDestroyed(includeWillRemovedState?: boolean): boolean;
69
+ destroy(withTransition?: boolean): void;
63
70
  }
64
71
  export {};
@@ -1,2 +1,25 @@
1
+ /**
2
+ * use normalizeRadians before use
3
+ */
4
+ export declare function isPositiveXAxis(angle: number): angle is 0;
5
+ /**
6
+ * use normalizeRadians before use
7
+ */
8
+ export declare function isPositiveYAxis(angle: number): boolean;
9
+ /**
10
+ * use normalizeRadians before use
11
+ */
12
+ export declare function isNegativeXAxis(angle: number): boolean;
13
+ /**
14
+ * use normalizeRadians before use
15
+ */
16
+ export declare function isNegativeYAxis(angle: number): boolean;
17
+ /**
18
+ * normalizes to [0, 2π)
19
+ */
1
20
  export declare function normalizeRadians(rad: number): number;
21
+ /**
22
+ * use normalizeRadians before use
23
+ */
24
+ export declare function getQuadrant(rad: number): number | null;
2
25
  export declare function radiansToDegrees(rad: number): number;
@@ -0,0 +1,13 @@
1
+ import { ErrorCategoryEnum, ErrorSeverityEnum } from '../../../types';
2
+ import { CustomError } from '../../../utils/Error';
3
+ import { Subject } from '@vkontakte/videoplayer-shared';
4
+ type EmitOnErrorArg = {
5
+ emitter$: Subject<CustomError>;
6
+ error?: unknown;
7
+ subjectId?: string;
8
+ message?: string;
9
+ severity?: ErrorSeverityEnum;
10
+ category?: ErrorCategoryEnum;
11
+ };
12
+ export declare function emitOnError({ emitter$, error, subjectId, message, severity, category, }: EmitOnErrorArg): void;
13
+ export {};
@@ -36,5 +36,6 @@ type ExecForAllExpectContainersParamsType = {
36
36
  execFn: (gameController: GameController) => void;
37
37
  };
38
38
  export declare function execForAllExpectContainers({ gameControllers, subjectName, subjectId, execFn, }: ExecForAllExpectContainersParamsType): void;
39
+ export declare function isControlHasOpenURIEvent(control: Control): boolean;
39
40
  export declare const evaluateContainerEventStatus: (container: ChapterContainer, gameControllers: GameController[]) => IgnoreExpectState;
40
41
  export {};