fix(FN-4486): complete Step 5 — restore workspace verification gates

Fusion-Task-Id: FN-4486
Fusion-Task-Lineage: 7d3b40b2-883f-450c-96ec-796f8af4fa45
This commit is contained in:
Fusion
2026-05-14 10:13:12 -07:00
committed by gsxdsm
parent 2f393d4d77
commit b14a89d948
8 changed files with 17 additions and 9 deletions

View File

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