(keys: Set<string>)
| 369 | }; |
| 370 | |
| 371 | const persistExpandedKeys = (keys: Set<string>) => { |
| 372 | const scope = currentScope(); |
| 373 | if (!scope) return; |
| 374 | safeWriteJSON( |
| 375 | storageKeySqlEditorWorksheetTree(scope.wsScope, scope.project, scope.email), |
| 376 | [...keys] |
| 377 | ); |
| 378 | }; |
| 379 | |
| 380 | const persistViewFolders = (view: SheetViewMode, folders: string[]) => { |
| 381 | const scope = currentScope(); |
no test coverage detected