()
| 41 | ) => { |
| 42 | let unknownDatabase: Database | undefined; |
| 43 | const getUnknownDatabase = () => { |
| 44 | unknownDatabase ??= createUnknownDatabase(); |
| 45 | return unknownDatabase; |
| 46 | }; |
| 47 | |
| 48 | // Mirrors the legacy Pinia `batchComposeDatabase`: pre-caches the owning |
| 49 | // projects and guarantees `instanceResource` is populated (with a fallback) |
no test coverage detected