@loadsmart/miranda-wc
Version:
Miranda Web Components component library
16 lines (15 loc) • 528 B
TypeScript
import type { ReactiveControllerHost, ReactiveController } from 'lit';
export type BoundaryControllerHost = ReactiveControllerHost & HTMLElement;
export declare class BoundaryController implements ReactiveController {
#private;
host: BoundaryControllerHost;
/**
* Should the boundary checking be active?
*/
active: boolean;
constructor(host: BoundaryControllerHost, active?: boolean);
hostConnected(): void;
hostDisconnected(): void;
activate: () => void;
deactivate: () => void;
}