(storageKey: string, suffix: number)
| 70 | } |
| 71 | |
| 72 | function appendStorageKeySuffix(storageKey: string, suffix: number): string { |
| 73 | assert(Number.isInteger(suffix) && suffix >= 2, "appendStorageKeySuffix: suffix must be >= 2"); |
| 74 | return `${storageKey}-${suffix}`; |
| 75 | } |
| 76 | |
| 77 | export function getWorkspaceProjectStorageKeys( |
| 78 | params: WorkspaceProjectStorageKeyParams |
no test coverage detected