Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

deep.d.ts 676B

12345678910111213141516
  1. import { MicromatchOptions, EntryFilterFunction, Pattern } from '../../types';
  2. import Settings from '../../settings';
  3. export 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. }