// Type definitions for findup-sync v0.3.0 // Project: https://github.com/cowboy/node-findup-sync // Definitions by: Bart van der Schoor , Nathan Brown // Definitions: https://github.com/borisyankov/DefinitelyTyped /// declare module 'findup-sync' { import minimatch = require('minimatch'); interface IOptions extends minimatch.IOptions { cwd?: string; } function mod(pattern: string[] | string, opts?: IOptions): string; export = mod; }