@mirahi/vendure-adyen-dropin-plugin
Version:
A Vendure plugin to integrate the Adyen payment provider to your server. This plugin only handles the flow for a drop-in integration on your storefront.
10 lines (9 loc) • 492 B
TypeScript
import { RequestContext } from "@vendure/core";
import { AdyenService } from "./adyen.service";
import type { AdyenPaymentIntent, AdyenPaymentIntentError, AdyenPaymentIntentResult } from "./generated-types/graphql";
export declare class AdyenResolver {
private adyenService;
constructor(adyenService: AdyenService);
createAdyenPaymentIntent(ctx: RequestContext): Promise<AdyenPaymentIntentResult>;
__resolveType(value: AdyenPaymentIntentError | AdyenPaymentIntent): string;
}