UNPKG
@typestrong/ts-mockito
Version:
latest (2.7.12)
2.7.12
2.7.11
2.7.9
2.7.8
2.7.7
2.7.6
2.7.5
2.7.3
2.7.2
2.7.1
2.6.8
2.6.7
2.6.6
2.6.5
2.6.4
2.6.3
2.6.2
Mocking library for TypeScript
github.com/TypeStrong/ts-mockito
TypeStrong/ts-mockito
@typestrong/ts-mockito
/
lib
/
matcher
/
type
/
DeepEqualMatcher.d.ts
8 lines
(7 loc)
•
216 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
Matcher
}
from
"./Matcher"
;
export
declare
class
DeepEqualMatcher
<T>
extends
Matcher
{
private
expectedValue;
constructor
(
expectedValue
: T
);
match
(
value
:
any
):
boolean
;
toString
():
string
; }