UNPKG

365 BTypeScriptView Raw
1import { InterfaceMatcher } from "./interface-matcher";
2import { MatcherOrType } from "./matcher-or-type";
3import { Constructor } from "../_interfaces";
4export declare function Any<ExpectedType extends object>(): InterfaceMatcher<ExpectedType>;
5export declare function Any<ExpectedType extends object>(type: Constructor<ExpectedType>): MatcherOrType<ExpectedType>;