UNPKG

@zxh19890103/wik

Version:

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

8 lines (7 loc) 269 B
import { Interactive } from './Interactive'; export interface IHighlightManager { layers: Set<Interactive>; highlight(layer: Interactive, ...layers: Interactive[]): void; unHighlight(layer: Interactive, ...layers: Interactive[]): void; clear(): void; }