@paypal/paypal-js
    Preparing search index...

    Type Alias LPMOneTimePaymentSession

    LPMOneTimePaymentSession: Omit<BasePaymentSession, "start"> & {
        createPaymentFields: (
            options: {
                style?: Record<string, unknown>;
                type: "email" | "name" | "tax_id" | "tax_id_type";
                value?: string;
            },
        ) => HTMLElement;
        start: (
            options: LPMStartOptions,
            paymentSessionPromise?: LPMOneTimePaymentSessionPromise,
        ) => Promise<void>;
        validate: () => Promise<boolean>;
    }