videx-3d
Version:
React 3D component library designed for sub surface visualizations in the browser
14 lines (13 loc) • 530 B
TypeScript
import { PropsWithChildren } from 'react';
type Props = {
selected?: string;
color?: string;
setSelected?: (wellbore: string, depth: number) => void;
depth?: number;
setDepth?: (depth: number) => void;
colorMap?: Record<string, string>;
interactive?: boolean;
depthCursor?: boolean;
};
export declare const Schematic: ({ selected, setSelected, depth, setDepth, color, colorMap, interactive, depthCursor, children, }: PropsWithChildren<Props>) => import("react/jsx-runtime").JSX.Element;
export {};