UNPKG

@webviz/subsurface-viewer

Version:

3D visualization component for subsurface reservoir data

7 lines (6 loc) 327 B
import type { Color } from "@deck.gl/core"; import type { Feature } from "geojson"; export type NumberPair = [number, number]; type StyleData = NumberPair | Color | number; export type StyleAccessorFunction<TFeature extends Feature = Feature> = (object: TFeature, objectInfo?: Record<string, unknown>) => StyleData; export {};