Update type definitions
Browse files- types/index.d.ts +48 -0
types/index.d.ts
CHANGED
@@ -489,24 +489,72 @@ declare module 'driver.js' {
|
|
489 |
*/
|
490 |
private positionOnLeft(position: Driver.Position): void;
|
491 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
492 |
/**
|
493 |
* Positions the popover to the right of the given element position
|
494 |
* @param {Driver.Position} position
|
495 |
*/
|
496 |
private positionOnRight(position: Driver.Position): void;
|
497 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
498 |
/**
|
499 |
* Positions the popover to the top of the given element position
|
500 |
* @param {Driver.Position} position
|
501 |
*/
|
502 |
private positionOnTop(position: Driver.Position): void;
|
503 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
504 |
/**
|
505 |
* Positions the popover to the bottom of the given element position
|
506 |
* @param {Driver.Position} position
|
507 |
*/
|
508 |
private positionOnBottom(position: Driver.Position): void;
|
509 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
510 |
/**
|
511 |
* Positions the popover automatically around the element position
|
512 |
* @param {Driver.Position} position
|
|
|
489 |
*/
|
490 |
private positionOnLeft(position: Driver.Position): void;
|
491 |
|
492 |
+
/**
|
493 |
+
* Positions the popover to the left-center of the given element position
|
494 |
+
* @param {Driver.Position} position
|
495 |
+
*/
|
496 |
+
private positionOnLeftCenter(position: Driver.Position): void;
|
497 |
+
|
498 |
+
/**
|
499 |
+
* Positions the popover to the left-bottom of the given element position
|
500 |
+
* @param {Driver.Position} position
|
501 |
+
*/
|
502 |
+
private positionOnLeftBottom(position: Driver.Position): void;
|
503 |
+
|
504 |
/**
|
505 |
* Positions the popover to the right of the given element position
|
506 |
* @param {Driver.Position} position
|
507 |
*/
|
508 |
private positionOnRight(position: Driver.Position): void;
|
509 |
|
510 |
+
/**
|
511 |
+
* Positions the popover to the right-center of the given element position
|
512 |
+
* @param {Driver.Position} position
|
513 |
+
*/
|
514 |
+
private positionOnRightCenter(position: Driver.Position): void;
|
515 |
+
|
516 |
+
/**
|
517 |
+
* Positions the popover to the right-bottom of the given element position
|
518 |
+
* @param {Driver.Position} position
|
519 |
+
*/
|
520 |
+
private positionOnRightBottom(position: Driver.Position): void;
|
521 |
+
|
522 |
/**
|
523 |
* Positions the popover to the top of the given element position
|
524 |
* @param {Driver.Position} position
|
525 |
*/
|
526 |
private positionOnTop(position: Driver.Position): void;
|
527 |
|
528 |
+
/**
|
529 |
+
* Positions the popover to the top-center of the given element position
|
530 |
+
* @param {Driver.Position} position
|
531 |
+
*/
|
532 |
+
private positionOnTopCenter(position: Driver.Position): void;
|
533 |
+
|
534 |
+
/**
|
535 |
+
* Positions the popover to the top-right of the given element position
|
536 |
+
* @param {Driver.Position} position
|
537 |
+
*/
|
538 |
+
private positionOnTopRight(position: Driver.Position): void;
|
539 |
+
|
540 |
/**
|
541 |
* Positions the popover to the bottom of the given element position
|
542 |
* @param {Driver.Position} position
|
543 |
*/
|
544 |
private positionOnBottom(position: Driver.Position): void;
|
545 |
|
546 |
+
/**
|
547 |
+
* Positions the popover to the bottom-center of the given element position
|
548 |
+
* @param {Driver.Position} position
|
549 |
+
*/
|
550 |
+
private positionOnBottomCenter(position: Driver.Position): void;
|
551 |
+
|
552 |
+
/**
|
553 |
+
* Positions the popover to the bottom-right of the given element position
|
554 |
+
* @param {Driver.Position} position
|
555 |
+
*/
|
556 |
+
private positionOnBottomRight(position: Driver.Position): void;
|
557 |
+
|
558 |
/**
|
559 |
* Positions the popover automatically around the element position
|
560 |
* @param {Driver.Position} position
|