// Type definitions for Proxyquire 1.3.0 // Project: https://github.com/thlorenz/proxyquire // Definitions by: jt000 // Definitions: https://github.com/borisyankov/DefinitelyTyped interface Proxyquire { (request: string, stubs: any): any; (request: string, stubs: any): T; load(request: string, stubs: any): any; load(request: string, stubs: any): T; noCallThru(): Proxyquire; callThru(): Proxyquire; noPreserveCache(): void; preserveCache(): void; } declare module 'proxyquire' { var p: Proxyquire; export = p; }