| 12345678910111213141516171819 |
- // 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/borisyankov/DefinitelyTyped
- /// <reference path="../minimatch/minimatch.d.ts" />
- declare module 'findup-sync' {
- import minimatch = require('minimatch');
- interface IOptions extends minimatch.IOptions {
- cwd?: string;
- }
- function mod(pattern: string[] | string, opts?: IOptions): string;
- namespace mod {} // Literally works around a bug in TS
- export = mod;
- }
|