UNPKG
strong-mock
Version:
beta (9.0.0-beta.3)
latest (9.2.2)
9.2.2
9.2.1
9.2.0
9.1.0
9.0.1
9.0.0
9.0.0-beta.3
9.0.0-beta.2
9.0.0-beta.1
9.0.0-beta.0
8.0.1
8.0.0
8.0.0-beta.2
8.0.0-beta.1
8.0.0-beta.0
7.3.0
7.2.1
7.2.0
7.1.2
7.1.1
7.1.0
7.0.0
6.0.0
5.0.1
5.0.0
5.0.0-beta.1
5.0.0-beta.0
4.1.3
4.1.2
4.1.1
4.1.0
4.0.0
4.0.0-beta.1
4.0.0-alpha.2
4.0.0-alpha.1
3.2.4
3.2.0
3.1.0
3.0.0
2.0.1
2.0.0
1.0.0
1.0.0-rc.2
Type safe mocking library for TypeScript
github.com/NiGhTTraX/strong-mock
NiGhTTraX/strong-mock
strong-mock
/
dist
/
errors
/
unexpected-access.d.ts
6 lines
(5 loc)
•
227 B
TypeScript
View Raw
1
2
3
4
5
6
import
type
{
Expectation
}
from
'../expectation/expectation'
;
import
type
{
Property
}
from
'../proxy'
;
export
declare
class
UnexpectedAccess
extends
Error
{
constructor
(
property
:
Property
,
expectations
:
Expectation
[]
); }