UNPKG

jasmine-auto-spies

Version:

Create automatic spies from classes in jasmine tests, also for promises and observables

4 lines (3 loc) 303 B
import { Spy } from './jasmine-auto-spies.types'; import { OnlyMethodKeysOf, ClassSpyConfiguration, ClassType } from '@hirez_io/auto-spies-core'; export declare function createSpyFromClass<T>(ObjectClass: ClassType<T>, methodsToSpyOnOrConfig?: OnlyMethodKeysOf<T>[] | ClassSpyConfiguration<T>): Spy<T>;