summaryrefslogtreecommitdiffstats
path: root/node_modules/fast-glob/out/utils/pattern.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/fast-glob/out/utils/pattern.d.ts')
-rw-r--r--node_modules/fast-glob/out/utils/pattern.d.ts25
1 files changed, 0 insertions, 25 deletions
diff --git a/node_modules/fast-glob/out/utils/pattern.d.ts b/node_modules/fast-glob/out/utils/pattern.d.ts
deleted file mode 100644
index 5a2f23a..0000000
--- a/node_modules/fast-glob/out/utils/pattern.d.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-import { MicromatchOptions, Pattern, PatternRe } from '../types';
-declare type PatternTypeOptions = {
- braceExpansion?: boolean;
- caseSensitiveMatch?: boolean;
- extglob?: boolean;
-};
-export declare function isStaticPattern(pattern: Pattern, options?: PatternTypeOptions): boolean;
-export declare function isDynamicPattern(pattern: Pattern, options?: PatternTypeOptions): boolean;
-export declare function convertToPositivePattern(pattern: Pattern): Pattern;
-export declare function convertToNegativePattern(pattern: Pattern): Pattern;
-export declare function isNegativePattern(pattern: Pattern): boolean;
-export declare function isPositivePattern(pattern: Pattern): boolean;
-export declare function getNegativePatterns(patterns: Pattern[]): Pattern[];
-export declare function getPositivePatterns(patterns: Pattern[]): Pattern[];
-export declare function getBaseDirectory(pattern: Pattern): string;
-export declare function hasGlobStar(pattern: Pattern): boolean;
-export declare function endsWithSlashGlobStar(pattern: Pattern): boolean;
-export declare function isAffectDepthOfReadingPattern(pattern: Pattern): boolean;
-export declare function expandPatternsWithBraceExpansion(patterns: Pattern[]): Pattern[];
-export declare function expandBraceExpansion(pattern: Pattern): Pattern[];
-export declare function getPatternParts(pattern: Pattern, options: MicromatchOptions): Pattern[];
-export declare function makeRe(pattern: Pattern, options: MicromatchOptions): PatternRe;
-export declare function convertPatternsToRe(patterns: Pattern[], options: MicromatchOptions): PatternRe[];
-export declare function matchAny(entry: string, patternsRe: PatternRe[]): boolean;
-export {};