mirror of
https://github.com/penpot/penpot.git
synced 2026-04-26 19:58:09 +00:00
8 lines
132 B
TypeScript
8 lines
132 B
TypeScript
export interface Shape {
|
|
id: string;
|
|
frameId?: string;
|
|
parentId?: string;
|
|
shapes?: string[];
|
|
layoutGridCells?: Shape[];
|
|
}
|