UNPKG

mappersmith

Version:

It is a lightweight rest client for node.js and the browser

16 lines (15 loc) 316 B
export default MockAssert; export 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; }