(ids: Iterable<string>)
| 145 | } |
| 146 | |
| 147 | export function saveCollapsedWorkspaces(ids: Iterable<string>): void { |
| 148 | safeSetJson(STORAGE_KEYS.collapsedWorkspaces, Array.from(ids)); |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * Whether the sidebar shows each workspace's root path under its name. Off by |
no test coverage detected