UNPKG

@webviz/subsurface-viewer

Version:

3D visualization component for subsurface reservoir data

12 lines (11 loc) 351 B
import React from "react"; import type { LayerPickInfo } from "../layers/utils/layerTools"; export interface InfoCardProps { /** * List of JSON object describing picking information of layers * that are under the cursor. */ pickInfos: LayerPickInfo[]; } declare const InfoCard: React.FC<InfoCardProps>; export default InfoCard;