MCPcopy Create free account
hub / github.com/TabularisDB/tabularis / notifyNotebooksChanged

Function notifyNotebooksChanged

src/utils/notebookStore.ts:15–19  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers 4

createNotebookFunction · 0.85
createNotebookFromStateFunction · 0.85
deleteNotebookFunction · 0.85
renameNotebookFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected