File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,11 @@ declare namespace jest {
14
14
15
15
toContainProperty ( prop : string | object , val ?: string ) : boolean ;
16
16
17
- toHaveText ( text : string | string [ ] | Function , exact ?: boolean ) : boolean ;
17
+ toHaveText ( text : string | string [ ] | ( ( text : string ) => boolean ) , exact ?: boolean ) : boolean ;
18
18
19
- toContainText ( text : string | string [ ] | Function , exact ?: boolean ) : boolean ;
19
+ toContainText ( text : string | string [ ] | ( ( text : string ) => boolean ) , exact ?: boolean ) : boolean ;
20
20
21
- toHaveExactText ( text : string | string [ ] | Function ) : boolean ;
21
+ toHaveExactText ( text : string | string [ ] | ( ( text : string ) => boolean ) ) : boolean ;
22
22
23
23
toHaveValue ( value : string | string [ ] ) : boolean ;
24
24
Original file line number Diff line number Diff line change @@ -14,11 +14,11 @@ declare namespace jasmine {
14
14
15
15
toContainProperty ( prop : string | object , val ?: string ) : boolean ;
16
16
17
- toHaveText ( text : string | string [ ] | Function , exact ?: boolean ) : boolean ;
17
+ toHaveText ( text : string | string [ ] | ( ( text : string ) => boolean ) , exact ?: boolean ) : boolean ;
18
18
19
- toContainText ( text : string | string [ ] | Function , exact ?: boolean ) : boolean ;
19
+ toContainText ( text : string | string [ ] | ( ( text : string ) => boolean ) , exact ?: boolean ) : boolean ;
20
20
21
- toHaveExactText ( text : string | string [ ] | Function ) : boolean ;
21
+ toHaveExactText ( text : string | string [ ] | ( ( text : string ) => boolean ) ) : boolean ;
22
22
23
23
toHaveValue ( value : string | string [ ] ) : boolean ;
24
24
You canβt perform that action at this time.
0 commit comments