* Get or create the singleton WorkspaceStore instance.
()
| 4444 | * Get or create the singleton WorkspaceStore instance. |
| 4445 | */ |
| 4446 | function getStoreInstance(): WorkspaceStore { |
| 4447 | storeInstance ??= new WorkspaceStore(() => { |
| 4448 | // Model tracking callback - can hook into other systems if needed |
| 4449 | }); |
| 4450 | return storeInstance; |
| 4451 | } |
| 4452 | |
| 4453 | /** |
| 4454 | * Direct access to the singleton store instance. |
no outgoing calls
no test coverage detected