mappersmith
Version:
It is a lightweight rest client for node.js and the browser
17 lines (15 loc) • 329 B
text/typescript
type MockAssert = any;
/**
* @typedef MockAssert
*/
declare function MockAssert(calls: any): void;
declare class MockAssert {
/**
* @typedef MockAssert
*/
constructor(calls: any);
calls: () => any;
callsCount: () => any;
mostRecentCall: () => any;
}
export { MockAssert, MockAssert as default };