UNPKG

@types/glob-parent

Version:
15 lines (11 loc) 429 B
// Type definitions for glob-parent 5.1 // Project: https://github.com/gulpjs/glob-parent // Definitions by: mrmlnc <https://github.com/mrmlnc> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare function globParent(pattern: string, options?: globParent.Options): string; declare namespace globParent { interface Options { flipBackslashes?: boolean | undefined; } } export = globParent;