@getopenpay/openpay-js 0.1.10 → 0.1.11-alpha.6e4e361

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -62,6 +62,12 @@ declare type CustomInitParams = {
62
62
  * Note that this function must complete within 1 second, or the submission will fail.
63
63
  */
64
64
  overrideLinkSubmit?: () => Promise<boolean>;
65
+
66
+ /**
67
+ * By default, the stripe link button is mounted on OJS initialization.
68
+ * If this value is true, the stripe link is not mounted on init, and should instead be manually mounted.
69
+ */
70
+ doNotMountOnInit?: boolean;
65
71
  };
66
72
  };
67
73