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

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

initial commit

  • Property mode set to 100644
File size: 714 bytes
Line 
1/// <reference types="node" />
2import * as fs from 'fs';
3import * as fsStat from '@nodelib/fs.stat';
4import Settings from '../settings';
5import { Entry, ErrnoException, Pattern, ReaderOptions } from '../types';
6export default abstract class Reader<T> {
7 protected readonly _settings: Settings;
8 protected readonly _fsStatSettings: fsStat.Settings;
9 constructor(_settings: Settings);
10 abstract dynamic(root: string, options: ReaderOptions): T;
11 abstract static(patterns: Pattern[], options: ReaderOptions): T;
12 protected _getFullEntryPath(filepath: string): string;
13 protected _makeEntry(stats: fs.Stats, pattern: Pattern): Entry;
14 protected _isFatalError(error: ErrnoException): boolean;
15}
Note: See TracBrowser for help on using the repository browser.