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

10 lines
400 B
TypeScript

import type { INode } from './interfaces.js';
export interface Options {
checksum: string;
relativePath: boolean;
symlinks: boolean;
}
export declare function validateInput(methodName: string, path: string, options: Options): void;
export declare function sync(path: string, options?: any): any | undefined;
export declare function async(path: string, options?: Options): Promise<INode>;