Welcome to mirror list, hosted at ThFree Co, Russian Federation.

async.d.ts « providers « out « fs.walk « @nodelib « node_modules « assets - github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f5f1bacd58cd928f67b4d30ec882b4fc16f6670 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import AsyncReader from '../readers/async';
import Settings from '../settings';
import { Entry, Errno } from '../types';
export declare type AsyncCallback = (err: Errno, entries: Entry[]) => void;
export default class AsyncProvider {
    private readonly _root;
    private readonly _settings;
    protected readonly _reader: AsyncReader;
    private readonly _storage;
    constructor(_root: string, _settings: Settings);
    read(callback: AsyncCallback): void;
}
//# sourceMappingURL=async.d.ts.map