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

8 lines
541 B
TypeScript

import { INode, IInspectOptions } from './interfaces.js';
export declare const supportedChecksumAlgorithms: string[];
export declare function DefaultInspectOptions(): IInspectOptions;
export declare function validateInput(methodName: string, path: string, options?: IInspectOptions): void;
export declare function createItem(path: string, options?: IInspectOptions): INode;
export declare function sync(path: string, options?: IInspectOptions): INode;
export declare const async: (path: string, options?: IInspectOptions) => Promise<INode>;