UNPKG

@loadsmart/miranda-wc

Version:

Miranda Web Components component library

10 lines (9 loc) 412 B
import type { ReactiveControllerHost } from 'lit'; import { ToggleableController } from '../togglable.controller'; export type BoundaryControllerHost = ReactiveControllerHost & HTMLElement; export declare class BoundaryController extends ToggleableController<BoundaryControllerHost> { #private; constructor(host: BoundaryControllerHost, active?: boolean); activate(): void; deactivate(): void; }