DefinitelyTyped/types/which/which-tests.ts
2017-03-24 14:27:52 -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);