strong-mock
Version:
Type safe mocking library for TypeScript
9 lines (8 loc) • 374 B
TypeScript
import type { Expectation } from '../expectation/expectation';
import type { CallMap } from '../expectation/repository/expectation-repository';
export declare class UnmetExpectations extends Error {
constructor(expectations: Expectation[]);
}
export declare class UnexpectedCalls extends Error {
constructor(unexpectedCalls: CallMap, expectations: Expectation[]);
}