Updated argument type

This commit is contained in:
Vilmos Ioo
2017-01-29 15:16:18 +00:00
committed by GitHub
parent fb08851a25
commit f59657e7a7

2
sinon/index.d.ts vendored
View File

@@ -109,7 +109,7 @@ declare namespace Sinon {
callsArgOnAsync(index: number, context: any): SinonStub;
callsArgWithAsync(index: number, ...args: any[]): SinonStub;
callsArgOnWithAsync(index: number, context: any, ...args: any[]): SinonStub;
callsFake(...args: any[]): SinonStub;
callsFake(func: (...args: any[]) => void): SinonStub;
onCall(n: number): SinonStub;
onFirstCall(): SinonStub;
onSecondCall(): SinonStub;