mono/packages/fs/dist/exists.d.ts
2025-01-23 07:22:43 +01:00

5 lines
270 B
TypeScript

import { ENodeType } from './interfaces.js';
export declare function validateInput(methodName: string, path: string): void;
export declare function sync(path: string): boolean | string;
export declare function async(path: string): Promise<boolean | string | ENodeType>;