@types/is-negated-glob
Version:
TypeScript definitions for is-negated-glob
29 lines (23 loc) • 871 B
Markdown
# Installation
> `npm install --save @types/is-negated-glob`
# Summary
This package contains type definitions for is-negated-glob (https://github.com/jonschlinkert/is-negated-glob).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/is-negated-glob.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/is-negated-glob/index.d.ts)
````ts
declare function isNegatedGlob(pattern: string): isNegatedGlob.Result;
declare namespace isNegatedGlob {
interface Result {
negated: boolean;
original: string;
pattern: string;
}
}
export = isNegatedGlob;
````
### Additional Details
* Last updated: Tue, 07 Nov 2023 03:09:37 GMT
* Dependencies: none
# Credits
These definitions were written by [Klaus Meinhardt](https://github.com/ajafff).