Check if a workspace exists.
(id: string)
| 163 | |
| 164 | /** Check if a workspace exists. */ |
| 165 | async exists(id: string): Promise<boolean> { |
| 166 | const entry = await this.load(id); |
| 167 | return entry !== undefined; |
| 168 | }, |
| 169 | }; |
| 170 | |
| 171 | // ── Table data (full rows) ────────────────────────────────────────────── |
nothing calls this directly
no outgoing calls
no test coverage detected