UNPKG
vitest-marbles
Version:
latest (0.0.1)
0.0.1
0.0.0
Marble testing helpers library for RxJs and Jest
vitest-marbles
/
typings
/
src
/
rxjs
/
assert-deep-equal.d.ts
5 lines
(4 loc)
•
288 B
TypeScript
View Raw
1
2
3
4
5
import
{
TestMessages
,
SubscriptionLog
}
from
'../rxjs/types'
;
import
'../vitest/custom-matchers'
;
export
declare
type
MessageOrSubscription
=
TestMessages
|
SubscriptionLog
[];
export
declare
function
assertDeepEqual
(
actual
:
MessageOrSubscription
,
expected
:
MessageOrSubscription
):
void
;