Skip to content

Commit

Permalink
changing deleteSelectedShape: id:any to id: string
Browse files Browse the repository at this point in the history
  • Loading branch information
LourdesRsdp committed Aug 8, 2024
1 parent 8210364 commit 3510b78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/providers/canvas/canvas.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ export interface CanvasContextModel {
updateShapeSizeAndPosition: (id: string, position: Coord, size: Size) => void;
updateShapePosition: (id: string, position: Coord) => void;
selectionInfo: SelectionInfo;
deleteSelectedShape: (id: any) => void;
deleteSelectedShape: (id: string) => void;
}

0 comments on commit 3510b78

Please sign in to comment.