source: trip-planner-front/node_modules/fast-glob/out/providers/filters/deep.d.ts

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

initial commit

  • Property mode set to 100644
File size: 660 bytes
Line 
1import { MicromatchOptions, EntryFilterFunction, Pattern } from '../../types';
2import Settings from '../../settings';
3export default class DeepFilter {
4 private readonly _settings;
5 private readonly _micromatchOptions;
6 constructor(_settings: Settings, _micromatchOptions: MicromatchOptions);
7 getFilter(basePath: string, positive: Pattern[], negative: Pattern[]): EntryFilterFunction;
8 private _getMatcher;
9 private _getNegativePatternsRe;
10 private _filter;
11 private _isSkippedByDeep;
12 private _getEntryLevel;
13 private _isSkippedSymbolicLink;
14 private _isSkippedByPositivePatterns;
15 private _isSkippedByNegativePatterns;
16}
Note: See TracBrowser for help on using the repository browser.