demu
Version:
A raspian emulator based on docker and qemu
10 lines (9 loc) • 319 B
TypeScript
export declare function argumentize(args: {
[key: string]: string | boolean | any[];
}, sign?: boolean): string[];
export declare function spawn(command: string, options?: {
[name: string]: any;
}): any;
export declare function spawn(command: string, args?: any[], options?: {
[name: string]: any;
}): any;