Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PaymentRequestUpdateEvent

This Payment Request API interface enables a web page to update the details of a PaymentRequest in response to a user action. Available only in secure contexts.

interface PaymentRequestUpdateEvent extends Event {
updateWith(detailsPromise: PaymentDetailsUpdate | PromiseLike<PaymentDetailsUpdate>): void;
}
var PaymentRequestUpdateEvent: {
new (type: string, eventInitDict?: PaymentRequestUpdateEventInit): PaymentRequestUpdateEvent;
}
;

§Extends

§Methods

§
updateWith(detailsPromise: PaymentDetailsUpdate | PromiseLike<PaymentDetailsUpdate>): void
[src]