fix(vscode): add project adds the chosen folder to the workspace

This commit is contained in:
bashrusakh
2026-08-19 10:38:54 +11:00
parent ef2afdc759
commit 599dafcd8c
9 changed files with 341 additions and 6 deletions
+2
View File
@@ -772,6 +772,8 @@ export interface VSCodeAPI {
pickFiles?(options?: { extensions?: string[] }): Promise<unknown>;
saveImage?(payload: unknown): Promise<unknown>;
saveMarkdown?(payload: unknown): Promise<unknown>;
/** Add a directory as a VS Code workspace folder; resolves with the full folder list after the add. */
addWorkspaceFolder?(path: string): Promise<Array<{ name: string; path: string }>>;
}
export interface PushSubscribePayload {