@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.
9 lines (8 loc) • 559 B
TypeScript
import type { QueryOptions } from '../types';
import type { GetTransferInstrumentResponse } from './transferInstruments.types';
export type QueryKeyTransferInstruments = ['transferInstruments'];
/**
* Gets a list of transfer instruments associated with a legal entity
* @param options additional options passed to Tanstack Query, eg; refetchInterval for polling
*/
export declare const useTransferInstruments: (options?: QueryOptions<GetTransferInstrumentResponse>) => import("@tanstack/preact-query").UseQueryResult<GetTransferInstrumentResponse, Error>;