diff --git a/README.md b/README.md index 2e31b80..6cdd7a5 100644 --- a/README.md +++ b/README.md @@ -312,6 +312,7 @@ foo.getBar(3); // MultipleMatchersMatchSameStubError will be thrown, two matcher ### Mocking interfaces You can mock interfaces too, just instead of passing type to `mock` function, set `mock` function generic type +Mocking interfaces requires `Proxy` implementation ``` typescript let mockedFoo:Foo = mock(); // instead of mock(FooInterface)