UNPKG

@realsee/dnalogel

Version:
10 lines (9 loc) 394 B
import type { LineStyle } from '../typings/style'; import type { PointsData } from '../utils/data'; import type { ColoredMeshStyle } from '../utils/three/ColoredMesh'; import { PolygonWithEdgeMesh } from './PolygonWithEdge'; export type AreaStyle = ColoredMeshStyle & LineStyle; export type AreaData = PointsData; export declare class AreaMesh extends PolygonWithEdgeMesh { name: string; }