source: trip-planner-front/node_modules/@nodelib/fs.walk/out/readers/sync.d.ts@ bdd6491

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

initial commit

  • Property mode set to 100644
File size: 477 bytes
Line 
1import * as fsScandir from '@nodelib/fs.scandir';
2import type { Entry } from '../types';
3import Reader from './reader';
4export default class SyncReader extends Reader {
5 protected readonly _scandir: typeof fsScandir.scandirSync;
6 private readonly _storage;
7 private readonly _queue;
8 read(): Entry[];
9 private _pushToQueue;
10 private _handleQueue;
11 private _handleDirectory;
12 private _handleError;
13 private _handleEntry;
14 private _pushToStorage;
15}
Note: See TracBrowser for help on using the repository browser.