ChemPal Documentation - v0.0.13-beta.5
    Preparing search index...

    Interface ParsedBinding

    Parsed representation of a key binding that can be matched against a KeyboardEvent. Modifier flags are strict: a modifier set to false must NOT be pressed (so ctrl+s does not also fire ctrl+shift+s).

    export interface ParsedBinding {
    meta: boolean;
    ctrl: boolean;
    alt: boolean;
    shift: boolean;
    key: string;
    }
    interface ParsedBinding {
        meta: boolean;
        ctrl: boolean;
        alt: boolean;
        shift: boolean;
        key: string;
    }
    Index

    Properties

    Properties

    meta: boolean
    ctrl: boolean
    alt: boolean
    shift: boolean
    key: string