Files
DefinitelyTyped/path-exists/path-exists-tests.ts
T

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"));