mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
417 B
TypeScript
15 lines
417 B
TypeScript
// 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;
|
|
}
|
|
}
|
|
|
|
export = globParent;
|