alsatian-test/alsatian

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

Summary

Maintainability
A
0 mins
Test Coverage
export type MatcherArgument<ExpectedType, Key extends keyof ExpectedType> = Key
                                                                            | Partial<ExpectedType>
                                                                            | ((argument: ExpectedType) => boolean);