File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
tools/public_api_guard/cdk/testing Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ 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 : [ location : 'center' ] | [ relativeX : number , relativeY : number ] ) : Promise < void > ;
7
7
focus ( ) : Promise < void > ;
8
8
getAttribute ( name : string ) : Promise < string | null > ;
9
9
getCssValue ( property : string ) : Promise < string > ;
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ export declare class UnitTestElement implements TestElement {
20
20
constructor ( element : Element , _stabilize : ( ) => Promise < void > ) ;
21
21
blur ( ) : Promise < void > ;
22
22
clear ( ) : Promise < void > ;
23
- click ( ...args : [ 'center' ] | [ number , number ] ) : Promise < void > ;
23
+ click ( ...args : [ location : 'center' ] | [ relativeX : number , relativeY : number ] ) : Promise < void > ;
24
24
focus ( ) : Promise < void > ;
25
25
getAttribute ( name : string ) : Promise < string | null > ;
26
26
getCssValue ( property : string ) : Promise < string > ;
You can’t perform that action at this time.
0 commit comments