fix(FN-4486): complete Step 1 — drop closed desktop stubs and unblock node-pty typing

Fusion-Task-Id: FN-4486
Fusion-Task-Lineage: 7d3b40b2-883f-450c-96ec-796f8af4fa45
This commit is contained in:
Fusion
2026-05-14 09:36:49 -07:00
committed by gsxdsm
parent 1fe96eb1ad
commit c835f7b61e
5 changed files with 17 additions and 22 deletions

12
packages/desktop/src/node-pty.d.ts vendored Normal file
View File

@@ -0,0 +1,12 @@
declare module "node-pty" {
export interface IPty {
[key: string]: any;
}
export interface IPtyForkOptions {
[key: string]: any;
}
export interface IWindowsPtyForkOptions extends IPtyForkOptions {
[key: string]: any;
}
export function spawn(...args: any[]): IPty;
}