@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.
18 lines (17 loc) • 546 B
TypeScript
export declare const KEYBOARD_KEYS: {
readonly arrowDown: "ArrowDown";
readonly arrowUp: "ArrowUp";
readonly arrowLeft: "ArrowLeft";
readonly arrowRight: "ArrowRight";
readonly enter: "Enter";
readonly escape: "Escape";
readonly space: " ";
readonly tab: "Tab";
readonly backspace: "Backspace";
readonly home: "Home";
readonly end: "End";
readonly shift: "Shift";
};
type KeyboardKeyLabel = keyof typeof KEYBOARD_KEYS;
export type KeyboardKey = (typeof KEYBOARD_KEYS)[KeyboardKeyLabel];
export {};