mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-30 05:27:30 +00:00
10 lines
140 B
TypeScript
10 lines
140 B
TypeScript
|
|
import which = require("which");
|
|
|
|
which("cat", (err, path) => {
|
|
console.log(path);
|
|
});
|
|
|
|
var path = which.sync("cat");
|
|
console.log(path);
|