UNPKG

274 BTypeScriptView Raw
1import { ISpyCall } from "../_interfaces";
2export declare class SpyCall implements ISpyCall {
3 get args(): any[];
4 private _args;
5 constructor(args: Array<any>);
6 allArgumentsMatch(...expectedArguments: Array<any>): boolean;
7 private _argumentIsAsExpected;
8}