()
| 164 | // name is intentionally private-looking so user code reaches for |
| 165 | // `getWorkspace(stub)` instead of calling it directly. |
| 166 | async getWorkspace(): Promise<unknown> { |
| 167 | const stub = this.#hostStub<{ __getWorkspaceStub(): Promise<unknown> }>(); |
| 168 | return stub.__getWorkspaceStub(); |
| 169 | } |
| 170 | |
| 171 | // Optional Artifacts CLI hook used by the worker-backend shell. |
| 172 | // Returning a target mirrors getWorkspace(): the dynamic Worker |
nothing calls this directly
no test coverage detected