(dir: string, scope: ServerScopeValue = ServerScope.local)
| 86 | } |
| 87 | |
| 88 | export function getWorkspaceTerminalCacheKey(dir: string, scope: ServerScopeValue = ServerScope.local) { |
| 89 | return ScopedKey.from(scope, dir, WORKSPACE_KEY) |
| 90 | } |
| 91 | |
| 92 | export function getLegacyTerminalStorageKeys(dir: string, legacySessionID?: string) { |
| 93 | if (!legacySessionID) return [`${dir}/terminal.v1`] |
no test coverage detected