@adyen/kyc-components
Version:
This guide assumes that you have already an account with Adyen. A legalEntity needs to be created, and you need to have a `legalEntityId` to instatiate a Component.
36 lines (35 loc) • 1.01 kB
TypeScript
import type { DOMAttributes } from 'react';
import type { DefineComponent } from 'vue';
import type { BaseEmbedProps } from '../baseEmbedProps';
export interface AdyenOnboardingProps extends BaseEmbedProps {
/** ConfigId setup to use open banking integration with Plaid **/
openbankingpartnerconfigid?: string;
}
declare module 'preact/jsx-runtime' {
namespace JSX {
interface IntrinsicElements {
'adyen-onboarding': AdyenOnboardingProps;
}
}
}
type CustomElement<T> = Partial<T & DOMAttributes<T> & {
children: any;
}>;
declare global {
namespace JSX {
interface IntrinsicElements {
'adyen-onboarding': CustomElement<AdyenOnboardingProps>;
}
}
namespace preact.JSX {
interface IntrinsicElements {
'adyen-onboarding': AdyenOnboardingProps;
}
}
}
declare module 'vue' {
interface GlobalComponents {
'adyen-onboarding': DefineComponent<AdyenOnboardingProps>;
}
}
export {};