import type { GraphEdgeDTO } from './GraphEdgeDTO'; import type { GraphNodeDTO } from './GraphNodeDTO'; export type GraphNodeWrapperDTO = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; node?: GraphNodeDTO; edges?: Array; id?: string; type?: string; };