headplane/app/routes/ssh/wasm_exec.d.ts

8 lines
191 B
TypeScript
Raw Normal View History

2025-06-08 08:59:33 -04:00
declare class Go {
importObject: WebAssembly.Imports;
run(instance: WebAssembly.Instance): Promise<void>;
argv?: string[];
env?: Record<string, string>;
exit?: (code: number) => void;
}