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
/
stub
/
MethodStub.d.ts
7 lines
(6 loc)
•
154 B
TypeScript
View Raw
1
2
3
4
5
6
7
export interface MethodStub {
isApplicable
(args: any[]): boolean;
execute
(args: any[]): void;
getValue
(): any;
getGroupIndex
(): number; }