UNPKG

alsatian

Version:

TypeScript and JavaScript testing framework for beautiful and readable tests

9 lines (8 loc) 274 B
import { ISpyCall } from "../_interfaces"; export declare class SpyCall implements ISpyCall { get args(): any[]; private _args; constructor(args: Array<any>); allArgumentsMatch(...expectedArguments: Array<any>): boolean; private _argumentIsAsExpected; }