()
| 13 | export const NOTEBOOKS_CHANGED_EVENT = "tabularis:notebooks-changed"; |
| 14 | |
| 15 | function notifyNotebooksChanged(): void { |
| 16 | if (typeof window !== "undefined") { |
| 17 | window.dispatchEvent(new Event(NOTEBOOKS_CHANGED_EVENT)); |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | // Module-level session cache |
| 22 | const cache = new Map<string, NotebookState>(); |
no outgoing calls
no test coverage detected