diff --git a/index.html b/index.html index a20acff8..03cabf78 100644 --- a/index.html +++ b/index.html @@ -611,7 +611,7 @@

[NewObject] Promise<PaymentResponse> show(optional Promise<PaymentDetailsUpdate> detailsPromise); [NewObject] - Promise<void> abort(); + Promise<undefined> abort(); [NewObject] Promise<boolean> canMakePayment(); [NewObject] @@ -3082,9 +3082,9 @@

readonly attribute DOMString? payerPhone; [NewObject] - Promise<void> complete(optional PaymentComplete result = "unknown"); + Promise<undefined> complete(optional PaymentComplete result = "unknown"); [NewObject] - Promise<void> retry(optional PaymentValidationErrors errorFields = {}); + Promise<undefined> retry(optional PaymentValidationErrors errorFields = {}); attribute EventHandler onpayerdetailchange; }; @@ -3725,7 +3725,7 @@

constructor(DOMString type, optional MerchantValidationEventInit eventInitDict = {}); readonly attribute DOMString methodName; readonly attribute USVString validationURL; - void complete(Promise<any> merchantSessionPromise); + undefined complete(Promise<any> merchantSessionPromise); };
@@ -3959,7 +3959,7 @@

[SecureContext, Exposed=Window] interface PaymentRequestUpdateEvent : Event { constructor(DOMString type, optional PaymentRequestUpdateEventInit eventInitDict = {}); - void updateWith(Promise<PaymentDetailsUpdate> detailsPromise); + undefined updateWith(Promise<PaymentDetailsUpdate> detailsPromise); };