9 lines
195 B
TypeScript
9 lines
195 B
TypeScript
|
interface Options {
|
||
|
noWasi?: boolean;
|
||
|
env?: object;
|
||
|
dir?: string | null;
|
||
|
time?: boolean;
|
||
|
}
|
||
|
export declare function run(name: string, options?: Options): Promise<void>;
|
||
|
export {};
|