export async function which(command: string, ifNotFound?: string): Promise { throw new Error("Not implemented"); } export function whichSync(cmd: string, ifNotFound?: string): string|null { throw new Error("Not implemented"); } export function exec(command: string): Promise { throw new Error("Not implemented"); }