osr-mono/packages/fs/build/inspect.d.ts
2025-01-29 17:40:56 +01:00

8 lines
537 B
TypeScript

import { INode, IInspectOptions } from './interfaces';
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 function async(path: string, options?: IInspectOptions): Promise<INode>;