From 3279de6c745327059bcf8699ffa0c01644c3e9de Mon Sep 17 00:00:00 2001 From: Roman Bruckner Date: Tue, 23 Jul 2024 15:45:07 +0200 Subject: [PATCH] types(dia.HighlighterView): add missing getAll() static method (#2717) --- packages/joint-core/types/joint.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/joint-core/types/joint.d.ts b/packages/joint-core/types/joint.d.ts index 12a92a7f0..62abe6055 100644 --- a/packages/joint-core/types/joint.d.ts +++ b/packages/joint-core/types/joint.d.ts @@ -1932,6 +1932,11 @@ export namespace dia { cellView: dia.CellView ): T[]; + static getAll( + paper: dia.Paper, + id?: string + ): T[]; + static update(cellView: dia.CellView, id?: string): void; static transform(cellView: dia.CellView, id?: string): void;