25 lines
812 B
TypeScript

import { Link } from '../node';
import * as opts from './types/options';
import type { IDir, IDirent } from './types/misc';
/**
* A directory stream, like `fs.Dir`.
*/
export declare class Dir implements IDir {
protected readonly link: Link;
protected options: opts.IOpendirOptions;
private iteratorInfo;
private closed;
private operationQueue;
constructor(link: Link, options: opts.IOpendirOptions);
private closeBase;
private readBase;
readonly path: string;
close(): Promise<void>;
close(callback?: (err?: Error) => void): void;
closeSync(): void;
read(): Promise<IDirent | null>;
read(callback?: (err: Error | null, dir?: IDirent | null) => void): void;
readSync(): IDirent | null;
[Symbol.asyncIterator](): AsyncIterableIterator<IDirent>;
}