@adyen/kyc-components
Version:
`adyen-kyc-components` provides the required pieces to build an onboarding flow based on a legal entity. To onboard and verify users, you need to create a user interface (UI) to collect user data. To speed up building your integration, Adyen offers onboar
15 lines (14 loc) • 581 B
TypeScript
import type { DecisionMakerType } from '../../core/models/api/decision-maker-type';
import type { CountryCode } from '../../core/models/country-code';
import type { TrustMemberGuidanceLabel } from '../../core/models/trust';
import type { TaskTypes } from '../TaskList/types';
export type EntityStatus = 'empty' | 'satisfied';
export interface EntityGuidanceStatusProps {
country: CountryCode;
currentTask: TaskTypes;
entityLabel: TrustMemberGuidanceLabel | DecisionMakerType;
status: EntityStatus;
}
export interface EntityStatusProps {
status: EntityStatus;
}