UNPKG

@determaer/cmkd

Version:

Cognitive Maps of Knowledge Diagnosis (CMKD) interactive builder

11 lines (10 loc) 328 B
import { Label, SelectableLabel } from './label'; import { Line } from './line'; import { Sector } from './sector'; export interface Info { type: "supportLabel" | "sector" | "line" | "label"; objLabel?: Label; prevLabels?: SelectableLabel[]; nextLabels?: SelectableLabel[]; object?: Label | Line | Sector; }