mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-18 12:08:59 +08:00
15 lines
478 B
TypeScript
15 lines
478 B
TypeScript
// Type definitions for findup-sync v0.3.0
|
|
// Project: https://github.com/cowboy/node-findup-sync
|
|
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>, Nathan Brown <https://github.com/ngbrown>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
import minimatch = require('minimatch');
|
|
|
|
interface IOptions extends minimatch.IOptions {
|
|
cwd?: string;
|
|
}
|
|
|
|
declare function mod(pattern: string[] | string, opts?: IOptions): string;
|
|
|
|
export = mod;
|