UNPKG

@zxh19890103/wik

Version:

The world-class JavaScript library for building large-scale digital warehouse both on 2D and 3D.

11 lines (10 loc) 480 B
import { IHighlightManager } from '../../interfaces'; import { Interactive } from '../../interfaces'; import { InteractiveStateActionManager } from './InteractiveStateActionManager.class'; export declare class HighlightManager implements IHighlightManager { readonly interactiveStateActionManager: InteractiveStateActionManager; layers: Set<Interactive>; highlight(...layers: Interactive[]): void; unHighlight(...layers: Interactive[]): void; clear(): void; }