mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-07 16:30:12 +08:00
Proxyquire uses a fluent api
All of its api configuration methods return an object with the `Proxyquire` type.
This commit is contained in:
Vendored
+3
-3
@@ -14,12 +14,12 @@ interface Proxyquire {
|
||||
noCallThru(): Proxyquire;
|
||||
callThru(): Proxyquire;
|
||||
|
||||
noPreserveCache(): void;
|
||||
preserveCache(): void;
|
||||
noPreserveCache(): Proxyquire;
|
||||
preserveCache(): Proxyquire;
|
||||
}
|
||||
|
||||
declare module 'proxyquire' {
|
||||
|
||||
var p: Proxyquire;
|
||||
export = p;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user