UNPKG

@giro3d/giro3d

Version:

A JS/WebGL framework for 3D geospatial data visualization

17 lines 596 B
import type GUI from 'lil-gui'; import type Instance from '../core/Instance'; import type Shape from '../entities/Shape'; import EntityInspector from './EntityInspector'; declare class ShapeInspector extends EntityInspector<Shape> { color: string; /** * Creates an instance of ShapeInspector. * * @param parentGui - The parent GUI. * @param instance - The Giro3D instance. * @param entity - The inspected Map. */ constructor(parentGui: GUI, instance: Instance, entity: Shape); } export default ShapeInspector; //# sourceMappingURL=ShapeInspector.d.ts.map