alsatian-test/alsatian

View on GitHub
packages/alsatian/core/spying/matcher-or-type.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { TypeMatcher } from "./type-matcher";

export type MatcherOrType<Type extends object> = TypeMatcher<Type> & Type;