1 | import { MatcherOrType } from "./matcher-or-type";
|
2 | import { MatcherArgument } from "./matcher-argument";
|
3 | import { ISpyMatcher } from "./spy-matcher.i";
|
4 | export declare class InterfaceMatcher<ExpectedType extends object> implements ISpyMatcher<ExpectedType> {
|
5 | thatMatches<Key extends keyof ExpectedType>(first: MatcherArgument<ExpectedType, Key>, second?: ExpectedType[Key]): MatcherOrType<ExpectedType>;
|
6 | }
|