mirror of
https://github.com/tale/headplane.git
synced 2026-07-27 08:08:56 +00:00
8 lines
191 B
TypeScript
8 lines
191 B
TypeScript
declare class Go {
|
|
importObject: WebAssembly.Imports;
|
|
run(instance: WebAssembly.Instance): Promise<void>;
|
|
argv?: string[];
|
|
env?: Record<string, string>;
|
|
exit?: (code: number) => void;
|
|
}
|