UNPKG

async-which

Version:

0-dependancy TS async cross-platform utility to find path of executable

4 lines (3 loc) 244 B
export declare function windowsWhich(name: string): Promise<string | undefined>; export declare function linuxOrMacosWhich(name: string): Promise<string | undefined>; export default function which(name: string): Promise<string | undefined>;