(dir: string, key: string, legacy?: string[])
| 494 | return { storage: GLOBAL_STORAGE, key: ScopedKey.from(scope, key) } |
| 495 | }, |
| 496 | workspace(dir: string, key: string, legacy?: string[]): PersistTarget { |
| 497 | return serverWorkspaceTarget(ServerScope.local, dir, `workspace:${key}`, legacy) |
| 498 | }, |
| 499 | serverWorkspace(scope: ServerScopeValue, dir: string, key: string, legacy?: string[]): PersistTarget { |
| 500 | return serverWorkspaceTarget(scope, dir, `workspace:${key}`, legacy) |
| 501 | }, |
no test coverage detected