UNPKG

@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.

5 lines (4 loc) 280 B
import type { Entries } from 'type-fest'; export declare const entriesOf: <T extends object>(object: T) => Entries<T>; export declare const valuesOf: <T extends object>(object: T) => Array<T[keyof T]>; export declare const keysOf: <T extends object>(object: T) => Array<keyof T>;