UNPKG

436 BTypeScriptView Raw
1import type { IExternalInteractor } from "../../Core/Interfaces/IExternalInteractor";
2import type { Container } from "../../Core/Container";
3export declare class Bouncer implements IExternalInteractor {
4 private readonly container;
5 constructor(container: Container);
6 isEnabled(): boolean;
7 interact(): void;
8 reset(): void;
9 private processMouseBounce;
10 private singleSelectorBounce;
11 private processBounce;
12}