// Type definitions for Proxyquire 1.3.0
// Project: https://github.com/thlorenz/proxyquire
// Definitions by: jt000
// Definitions: https://github.com/DefinitelyTyped/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(): Proxyquire;
preserveCache(): Proxyquire;
}
declare module 'proxyquire' {
var p: Proxyquire;
export = p;
}