UNPKG

@zxh19890103/wik

Version:

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

16 lines (15 loc) 647 B
import { LayerWithID } from '../../interfaces'; import { LayerList } from './LayerList.class'; import { WikMap } from './Map.class'; import { PaneManager, WikPane } from '../state/PaneManager.class'; import { ReactSVGOverlayAppServer } from './ReactSVGOverlayApp'; export declare class SVGOverlayList<M extends LayerWithID, E extends string = never> extends LayerList<M, E> { readonly pane: string; readonly paneObj: WikPane; readonly svgServer: ReactSVGOverlayAppServer; readonly paneMgr: PaneManager; constructor(pane: string); protected _add(item: M): void; setZ(z: number): void; mount(parent: WikMap): void; }