Add missing property in popover options
Browse files- types/index.d.ts +6 -0
types/index.d.ts
CHANGED
@@ -565,6 +565,12 @@ declare module 'driver.js' {
|
|
565 |
* @default true
|
566 |
*/
|
567 |
isLast?: boolean;
|
|
|
|
|
|
|
|
|
|
|
|
|
568 |
}
|
569 |
|
570 |
interface DriverOptions {
|
|
|
565 |
* @default true
|
566 |
*/
|
567 |
isLast?: boolean;
|
568 |
+
|
569 |
+
/**
|
570 |
+
* Position for the popover on element
|
571 |
+
* @default auto
|
572 |
+
*/
|
573 |
+
position?: string;
|
574 |
}
|
575 |
|
576 |
interface DriverOptions {
|