DefinitelyTyped/which/which-tests.ts
2016-04-27 21:53:46 -07:00

10 lines
140 B
TypeScript

import which = require("which");
which("cat", (err, path) => {
console.log(path);
});
var path = which.sync("cat");
console.log(path);