@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
6 lines (5 loc) • 340 B
TypeScript
import type { JSX } from 'preact';
import type { KeyboardKey } from '../../core/constants';
type PropagationMode = 'stopIfMatches' | 'stop' | 'passthrough';
export declare const handleKeys: (keys: KeyboardKey[], callback: () => void, propagationMode?: PropagationMode) => (event: JSX.TargetedKeyboardEvent<HTMLElement>) => void;
export {};