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