/var/www/greso.tech/server/nsm/node_modules/path-exists
NameSizeModeActions
index.d.ts4290644editdlrm
index.js3470644editdlrm
license11090644editdlrm
package.json6070644editdlrm
readme.md14270644editdlrm
Edit: /var/www/greso.tech/server/nsm/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;