(dir: string, session: string, key: string, legacy?: string[])
| 500 | return serverWorkspaceTarget(scope, dir, `workspace:${key}`, legacy) |
| 501 | }, |
| 502 | session(dir: string, session: string, key: string, legacy?: string[]): PersistTarget { |
| 503 | return serverWorkspaceTarget(ServerScope.local, dir, `session:${session}:${key}`, legacy) |
| 504 | }, |
| 505 | serverSession(scope: ServerScopeValue, dir: string, session: string, key: string, legacy?: string[]): PersistTarget { |
| 506 | return serverWorkspaceTarget(scope, dir, `session:${session}:${key}`, legacy) |
| 507 | }, |
no test coverage detected