type.ts 272 Bytes
Newer Older
hucy's avatar
hucy committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
export interface X6NodesType {
  id?: string;
  x: number;
  y: number;
  width?: number;
  height?: number;
  label: string;
  shape?: string;
  [proppName: string]: any;
}

export interface X6EdgesType {
  source: string;
  target: string;
  [proppName: string]: any;
}