(id: string)
| 7 | let grid: GridStack; |
| 8 | let grids: GridStack[]; |
| 9 | let find = function(id: string): GridStackNode { |
| 10 | return grid.engine.nodes.find(n => n.id === id)!; |
| 11 | }; |
| 12 | let findEl = function(id: string): GridItemHTMLElement { |
| 13 | return find(id).el!; |
| 14 | }; |
no test coverage detected