@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.
12 lines (11 loc) • 509 B
TypeScript
import type { ActionType, AdditionalEventProperties, UserEvents } from '../../core/user-events';
interface TrackNavigationProps {
userEvents: UserEvents;
actionType: ActionType;
toForm?: string;
label: string;
returnValue?: 'success' | 'validation error';
additionalTrackingParams?: Partial<AdditionalEventProperties>;
}
export declare const trackNavigation: ({ userEvents, actionType, toForm, label, returnValue, additionalTrackingParams, }: TrackNavigationProps) => void;
export {};