* 重置所有工作区级 stores
()
| 23 | * 重置所有工作区级 stores |
| 24 | */ |
| 25 | function resetWorkspaceStores(): void { |
| 26 | const { page, folder, message, tab } = stores |
| 27 | page.reset() |
| 28 | folder.reset() |
| 29 | message.reset() |
| 30 | tab.reset() |
| 31 | } |
| 32 | |
| 33 | function getApprovedWorkspacePaths(extraApprovedPaths: string[] = []): string[] { |
| 34 | return Array.from( |
no test coverage detected