Last active
February 28, 2017 12:48
-
-
Save DovydasNavickas/1623f16adf75ce99ba81e3055d9cbc3d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Type definitions for multi-glob v1.0.1 | |
// Project: https://github.com/busterjs/multi-glob/blob | |
// Definitions by: Dovydas Navickas <https://github.com/DovydasNavickas> | |
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | |
import * as glob_original from "glob"; | |
export function glob(patterns: string[], cb: (err: Error, matches: string[]) => void): void; | |
export function glob(patterns: string[], options: glob_original.IOptions, cb: (err: Error, matches: string[]) => void): void; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment