source: trip-planner-front/node_modules/@nodelib/fs.walk/out/providers/async.d.ts@ fa375fe

Last change on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 478 bytes
Line 
1import AsyncReader from '../readers/async';
2import type Settings from '../settings';
3import type { Entry, Errno } from '../types';
4export declare type AsyncCallback = (error: Errno, entries: Entry[]) => void;
5export default class AsyncProvider {
6 private readonly _root;
7 private readonly _settings;
8 protected readonly _reader: AsyncReader;
9 private readonly _storage;
10 constructor(_root: string, _settings: Settings);
11 read(callback: AsyncCallback): void;
12}
Note: See TracBrowser for help on using the repository browser.