ts-mockito
Version:
Mocking library for TypeScript
11 lines (10 loc) • 417 B
TypeScript
import { Matcher } from "./matcher/type/Matcher";
import { MethodStubCollection } from "./MethodStubCollection";
import { Mocker } from "./Mock";
export declare class MethodToStub {
methodStubCollection: MethodStubCollection;
matchers: Matcher[];
mocker: Mocker;
name: string;
constructor(methodStubCollection: MethodStubCollection, matchers: Matcher[], mocker: Mocker, name: string);
}