source: trip-planner-front/node_modules/fast-glob/out/types/index.d.ts@ 188ee53

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

initial commit

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/// <reference types="node" />
2import * as fsWalk from '@nodelib/fs.walk';
3export declare type ErrnoException = NodeJS.ErrnoException;
4export declare type Entry = fsWalk.Entry;
5export declare type EntryItem = string | Entry;
6export declare type Pattern = string;
7export declare type PatternRe = RegExp;
8export declare type PatternsGroup = Record<string, Pattern[]>;
9export declare type ReaderOptions = fsWalk.Options & {
10 transform(entry: Entry): EntryItem;
11 deepFilter: DeepFilterFunction;
12 entryFilter: EntryFilterFunction;
13 errorFilter: ErrorFilterFunction;
14 fs: FileSystemAdapter;
15 stats: boolean;
16};
17export declare type ErrorFilterFunction = fsWalk.ErrorFilterFunction;
18export declare type EntryFilterFunction = fsWalk.EntryFilterFunction;
19export declare type DeepFilterFunction = fsWalk.DeepFilterFunction;
20export declare type EntryTransformerFunction = (entry: Entry) => EntryItem;
21export declare type MicromatchOptions = {
22 dot?: boolean;
23 matchBase?: boolean;
24 nobrace?: boolean;
25 nocase?: boolean;
26 noext?: boolean;
27 noglobstar?: boolean;
28 posix?: boolean;
29 strictSlashes?: boolean;
30};
31export declare type FileSystemAdapter = fsWalk.FileSystemAdapter;
Note: See TracBrowser for help on using the repository browser.