import type { GraphElementIdentifiers } from "../element-mappings.js"; import type { KnowledgeGraphEdgeKind, OntologyEdgeKind, SharedEdgeKind } from "./kind.js"; /** * A "partial" definition of an edge which is complete when joined with the missing left-endpoint (usually the source * of the edge) */ export type GenericOutwardEdge = { kind: EdgeKind; reversed: Reversed; rightEndpoint: Endpoint; };