UNPKG
ts-mockery
Version:
latest (2.0.0)
2.0.0
1.2.0
1.1.0
1.0.1
1.0.0
1.0.0-rc.9
1.0.0-rc.8
1.0.0-rc.7
1.0.0-rc.6
1.0.0-rc.5
1.0.0-rc.4
1.0.0-rc.3
1.0.0-rc.2
1.0.0-rc.1
1.0.0-alpha.1
1.0.0-alpha.0
Yet another typescript mocking library.
github.com/ike18t/ts-mockery
ike18t/ts-mockery
ts-mockery
/
dist
/
lib
/
spy-adapters
/
noop-adapter.d.ts
7 lines
(6 loc)
•
182 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
SpyAdapter
}
from
'./spy-adapter'
;
export
declare
class
NoopAdapter
implements
SpyAdapter
{
getSpy
():
void
;
spyAndCallFake
():
void
;
spyAndCallThrough
():
void
; }