Skip to content

Instantly share code, notes, and snippets.

@DovydasNavickas
Last active February 28, 2017 12:48
Show Gist options
  • Save DovydasNavickas/1623f16adf75ce99ba81e3055d9cbc3d to your computer and use it in GitHub Desktop.
Save DovydasNavickas/1623f16adf75ce99ba81e3055d9cbc3d to your computer and use it in GitHub Desktop.
// 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