| 6 | |
| 7 | |
| 8 | interface Plot { |
| 9 | // unique ID for this plot (w.r.t. this connection/device) |
| 10 | id: string; |
| 11 | |
| 12 | // svg of the plot |
| 13 | svg: string; |
| 14 | |
| 15 | height?: number; |
| 16 | width?: number; |
| 17 | } |
| 18 | |
| 19 | // get vscode api |
| 20 | declare function acquireVsCodeApi(): VsCode; |
nothing calls this directly
no outgoing calls
no test coverage detected