Interface KeyValidationInput

interface KeyValidationInput {
    altKey?: boolean;
    character: string;
    code: string;
    ctrlKey?: boolean;
    shiftKey?: boolean;
}

Properties

altKey?: boolean
character: string
code: string
ctrlKey?: boolean
shiftKey?: boolean