Files
DefinitelyTyped/path-exists/path-exists-tests.ts
2015-07-19 21:56:28 +09:00

9 lines
229 B
TypeScript

/// <reference path="path-exists.d.ts" />
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"));