source: trip-planner-front/node_modules/fast-glob/out/readers/sync.d.ts@ 6c1585f

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

initial commit

  • Property mode set to 100644
File size: 506 bytes
Line 
1import * as fsStat from '@nodelib/fs.stat';
2import * as fsWalk from '@nodelib/fs.walk';
3import { Entry, Pattern, ReaderOptions } from '../types';
4import Reader from './reader';
5export default class ReaderSync extends Reader<Entry[]> {
6 protected _walkSync: typeof fsWalk.walkSync;
7 protected _statSync: typeof fsStat.statSync;
8 dynamic(root: string, options: ReaderOptions): Entry[];
9 static(patterns: Pattern[], options: ReaderOptions): Entry[];
10 private _getEntry;
11 private _getStat;
12}
Note: See TracBrowser for help on using the repository browser.