Skip to content

Commit

Permalink
#36 new interface for ExtraObject
Browse files Browse the repository at this point in the history
  • Loading branch information
ddelpiano committed Oct 15, 2022
1 parent 13e18e4 commit e216cf9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/model/nodes/utils.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
export interface ExtraObject {
position?: {
x: number;
y: number;
},
boundingBox?: {
llx: number;
lly: number;
urx: number;
ury: number;
},
isExpanded?: Boolean,
icon?: string
}

0 comments on commit e216cf9

Please sign in to comment.