@types/glob
- Version 8.1.0
- Published
- 6.66 kB
- 2 dependencies
- MIT license
Install
npm i @types/glob
yarn add @types/glob
pnpm add @types/glob
Overview
TypeScript definitions for glob
Index
Variables
Functions
Interfaces
Variables
Functions
Interfaces
interface IGlob
interface IGlob extends IGlobBase, events.EventEmitter {}
interface IGlobBase
interface IGlobBase {}
property aborted
aborted: boolean;
property cache
cache: { [path: string]: boolean | 'DIR' | 'FILE' | ReadonlyArray<string> };
property found
found: string[];
property minimatch
minimatch: minimatch.IMinimatch;
property options
options: IOptions;
property realpathCache
realpathCache: { [path: string]: string };
property statCache
statCache: { [path: string]: false | { isDirectory(): boolean } | undefined };
property symlinks
symlinks: { [path: string]: boolean | undefined };
interface IGlobStatic
interface IGlobStatic extends events.EventEmitter {}
property prototype
prototype: IGlob;
construct signature
new ( pattern: string, cb?: (err: Error | null, matches: string[]) => void): IGlob;
construct signature
new ( pattern: string, options: IOptions, cb?: (err: Error | null, matches: string[]) => void): IGlob;
interface IGlobSyncStatic
interface IGlobSyncStatic {}
property prototype
prototype: IGlobBase;
construct signature
new (pattern: string, options?: IOptions): IGlobBase;
interface IOptions
interface IOptions extends minimatch.IOptions {}
property absolute
absolute?: boolean | undefined;
property allowWindowsEscape
allowWindowsEscape?: boolean | undefined;
property cache
cache?: | { [path: string]: boolean | 'DIR' | 'FILE' | ReadonlyArray<string> } | undefined;
property cwd
cwd?: string | undefined;
property debug
debug?: boolean | undefined;
property dot
dot?: boolean | undefined;
property follow
follow?: boolean | undefined;
property fs
fs?: typeof fs;
property ignore
ignore?: string | ReadonlyArray<string> | undefined;
property mark
mark?: boolean | undefined;
property matchBase
matchBase?: any;
property nobrace
nobrace?: boolean | undefined;
property nocase
nocase?: boolean | undefined;
property nocomment
nocomment?: boolean | undefined;
property nodir
nodir?: boolean | undefined;
property noext
noext?: boolean | undefined;
property noglobstar
noglobstar?: boolean | undefined;
property nomount
nomount?: boolean | undefined;
property nonegate
nonegate?: boolean | undefined;
property nonull
nonull?: boolean | undefined;
property nosort
nosort?: boolean | undefined;
property nounique
nounique?: boolean | undefined;
property realpath
realpath?: boolean | undefined;
property realpathCache
realpathCache?: { [path: string]: string } | undefined;
property root
root?: string | undefined;
property silent
silent?: boolean | undefined;
property stat
stat?: boolean | undefined;
property statCache
statCache?: | { [path: string]: false | { isDirectory(): boolean } | undefined } | undefined;
property strict
strict?: boolean | undefined;
property symlinks
symlinks?: { [path: string]: boolean | undefined } | undefined;
property sync
sync?: boolean | undefined;
Package Files (1)
Dependencies (2)
Dev Dependencies (0)
No dev dependencies.
Peer Dependencies (0)
No peer dependencies.
Badge
To add a badge like this oneto your package's README, use the codes available below.
You may also use Shields.io to create a custom badge linking to https://www.jsdocs.io/package/@types/glob
.
- Markdown[![jsDocs.io](https://img.shields.io/badge/jsDocs.io-reference-blue)](https://www.jsdocs.io/package/@types/glob)
- HTML<a href="https://www.jsdocs.io/package/@types/glob"><img src="https://img.shields.io/badge/jsDocs.io-reference-blue" alt="jsDocs.io"></a>
- Updated .
Package analyzed in 2032 ms. - Missing or incorrect documentation? Open an issue for this package.