UNPKG

alsatian

Version:

TypeScript and JavaScript testing framework for beautiful and readable tests

6 lines (5 loc) 365 B
import { InterfaceMatcher } from "./interface-matcher"; import { MatcherOrType } from "./matcher-or-type"; import { Constructor } from "../_interfaces"; export declare function Any<ExpectedType extends object>(): InterfaceMatcher<ExpectedType>; export declare function Any<ExpectedType extends object>(type: Constructor<ExpectedType>): MatcherOrType<ExpectedType>;