refactor!: remove unused CellMap type (#210)

development
Thomas Bouffard 2023-07-03 11:13:10 +02:00 committed by GitHub
parent 3d71f15347
commit fd0d47ad4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 5 deletions

View File

@ -2,8 +2,9 @@
## Unreleased
Breaking Changes
**Breaking Changes**
- `Stylesheet.getDefaultVertexStyle` and `Stylesheet.getDefaultEdgeStyle` no longer return `undefined`.
- remove the `CellMap` type. It was not used in the maxGraph code, which should have no impact.
## 0.2.1

View File

@ -23,10 +23,6 @@ import type Shape from './view/geometry/Shape';
import type { Graph } from './view/Graph';
import type ImageBox from './view/image/ImageBox';
export type CellMap = {
[id: string]: Cell;
};
export type FilterFunction = (cell: Cell) => boolean;
export type UndoableChange = {