UNPKG

429 BTypeScriptView Raw
1// Type definitions for glob-parent 5.1
2// Project: https://github.com/gulpjs/glob-parent
3// Definitions by: mrmlnc <https://github.com/mrmlnc>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6declare function globParent(pattern: string, options?: globParent.Options): string;
7
8declare namespace globParent {
9 interface Options {
10 flipBackslashes?: boolean | undefined;
11 }
12}
13
14export = globParent;