Files
DefinitelyTyped/path-exists/path-exists-tests.ts
2016-04-27 21:53:46 -07:00

8 lines
187 B
TypeScript

import pathExists = require("path-exists");
pathExists("test/path-exists.d.ts", (error, exists) => {
console.log(exists);
});
console.log(pathExists.sync("test/__path-exists.d.ts"));