import { MatcherOrType } from "./matcher-or-type"; export interface ISpyMatcher { thatMatches(key: Key, value: ExpectedType[Key]): MatcherOrType; thatMatches(properties: Partial): MatcherOrType; thatMatches(delegate: (argument: ExpectedType) => boolean): MatcherOrType; }