File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
tools/public_api_guard/cdk/testing Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,11 @@ export declare class ProtractorElement implements TestElement {
3
3
constructor ( element : ElementFinder ) ;
4
4
blur ( ) : Promise < void > ;
5
5
clear ( ) : Promise < void > ;
6
- click ( ...args : [ ] | [ 'center' ] | [ number , number ] ) : Promise < void > ;
6
+ click ( ...args : [ ModifierKeys ?] | [ 'center' , ModifierKeys ?] | [
7
+ number ,
8
+ number ,
9
+ ModifierKeys ?
10
+ ] ) : Promise < void > ;
7
11
dispatchEvent ( name : string , data ?: Record < string , EventData > ) : Promise < void > ;
8
12
focus ( ) : Promise < void > ;
9
13
getAttribute ( name : string ) : Promise < string | null > ;
Original file line number Diff line number Diff line change @@ -21,7 +21,11 @@ export declare class UnitTestElement implements TestElement {
21
21
constructor ( element : Element , _stabilize : ( ) => Promise < void > ) ;
22
22
blur ( ) : Promise < void > ;
23
23
clear ( ) : Promise < void > ;
24
- click ( ...args : [ ] | [ 'center' ] | [ number , number ] ) : Promise < void > ;
24
+ click ( ...args : [ ModifierKeys ?] | [ 'center' , ModifierKeys ?] | [
25
+ number ,
26
+ number ,
27
+ ModifierKeys ?
28
+ ] ) : Promise < void > ;
25
29
dispatchEvent ( name : string , data ?: Record < string , EventData > ) : Promise < void > ;
26
30
focus ( ) : Promise < void > ;
27
31
getAttribute ( name : string ) : Promise < string | null > ;
You can’t perform that action at this time.
0 commit comments