/home/techb158/balavpn.abdallabala.com/node_modules/path-exists
NameSizeModeActions
index.d.ts4290666editdlrm
index.js3470666editdlrm
license11090666editdlrm
package.json6070666editdlrm
readme.md14270666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/path-exists/index.d.ts (429B)
declare const pathExists: { /** Check if a path exists. @returns Whether the path exists. @example ``` // foo.ts import pathExists = require('path-exists'); (async () => { console.log(await pathExists('foo.ts')); //=> true })(); ``` */ (path: string): Promise; /** Synchronously check if a path exists. @returns Whether the path exists. */ sync(path: string): boolean; }; export = pathExists;