(n: GridStackNode, column: number)
| 1231 | } |
| 1232 | |
| 1233 | protected findCacheLayout(n: GridStackNode, column: number): number | undefined { |
| 1234 | return this._layouts?.[column]?.findIndex(l => l._id === n._id) ?? -1; |
| 1235 | } |
| 1236 | |
| 1237 | public removeNodeFromLayoutCache(n: GridStackNode) { |
| 1238 | if (!this._layouts) { |
no outgoing calls
no test coverage detected