mxgraph.d.ts 293 B

1234567891011121314151617
  1. export interface PaletteShape {
  2. index: number
  3. idSeed: number
  4. type: string
  5. id: string
  6. title: string
  7. class: string
  8. width: number
  9. height: number
  10. style: Record<string, any>
  11. icon?: string
  12. iconColor?: string
  13. }
  14. export interface CellGeometry {
  15. width: number
  16. height: number
  17. }