strong-mock
Version:
Type safe mocking library for TypeScript
5 lines (4 loc) • 349 B
TypeScript
import type { Expectation } from '../expectation/expectation';
export declare const printArgsDiff: (expected: unknown[], actual: unknown[]) => string;
export declare const printExpectationDiff: (e: Expectation, args: unknown[]) => string;
export declare const printDiffForAllExpectations: (expectations: Expectation[], actual: unknown[]) => string;