mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
16 lines
512 B
TypeScript
16 lines
512 B
TypeScript
// Type definitions for findup-sync v0.1.3
|
|
// Project: https://github.com/cowboy/node-findup-sync
|
|
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../minimatch/minimatch.d.ts" />
|
|
|
|
declare module 'findup-sync' {
|
|
import minimatch = require('minimatch');
|
|
|
|
function mod(pattern: string, opts?: minimatch.IOptions): string;
|
|
function mod(pattern: string[], opts?: minimatch.IOptions): string;
|
|
|
|
export = mod;
|
|
}
|