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.

7 lines (6 loc) 291 B
import type { DataSet } from '../core/models/api/data-set'; import type { DatasetIdentifier } from '../utils/datasetUtil'; export declare function useDataset<T extends string = string>(datasetIdentifier: DatasetIdentifier, skip?: boolean): { dataset: DataSet<T>; loaded: boolean; };