@paynl/payparts-types 1.4.0-alpha.95 → 1.4.0-alpha.96
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/src/core/types.d.ts +1 -1
- package/package.json +1 -1
package/dist/src/core/types.d.ts
CHANGED
|
@@ -654,7 +654,7 @@ export interface InitOptions {
|
|
|
654
654
|
/** @deprecated Use ApplePayOptions instead */
|
|
655
655
|
export type ApplePayConfig = ApplePayOptions;
|
|
656
656
|
export type PayPartsSDK = {
|
|
657
|
-
init: (opt: InitOptions) =>
|
|
657
|
+
init: (opt: InitOptions) => Promise<Checkout>;
|
|
658
658
|
mount: (options: MountOptions) => MountResult;
|
|
659
659
|
create: (options: CheckoutConfig) => MountResult;
|
|
660
660
|
prepare: (_methodOrSection: string) => PaymentComponent;
|