UNPKG

jasmine-automock

Version:

A small library used to mock an instance of a class using jasmine, perfect for mocking injected dependencies.

4 lines 185 B
/// <reference types="jasmine" /> import { Type } from './interfaces/type'; export declare function autoMock<T>(ref: Type<T>): jasmine.SpyObj<T>; //# sourceMappingURL=auto-mock.d.ts.map