import { Item, Relation } from '@onepoint-yap/dashboard'; import { SimulationLinkDatum, SimulationNodeDatum } from 'd3-force'; export interface YapNode extends SimulationNodeDatum { item: Item; id: string; image: HTMLCanvasElement | HTMLImageElement; selected: boolean; topologicalColor?: string; } export interface YapLink extends SimulationLinkDatum { relation: Relation; }