import { Vector3Tuple } from "three"; import { LABEL_DEFAULTS } from "../constants"; export type RecursivePartial = { [P in keyof T]?: RecursivePartial; }; export type Labels = Partial; export interface CustomLabel { element?: HTMLDivElement | SVGSVGElement | null; position: Vector3Tuple; name: string; }