persona-community-5/.pnpm-store/v3/files/df/8644b4bd3d33acc31fcc8affc6c6b338be7c6c7e9fa6cc375979f6d43392812fac839c6a78c77f07172cf2a5cbebb6152435d5c86f17cbde617ddeb9713cc2
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

29 lines
429 B
Plaintext

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<boolean>;
/**
Synchronously check if a path exists.
@returns Whether the path exists.
*/
sync(path: string): boolean;
};
export = pathExists;