interface KeymapGroup {
    group: string;
    rows: readonly {
        combo: string;
        display: string;
        label: string;
        shadowedBy?: string;
    }[];
}

Properties

Properties

group: string
rows: readonly {
    combo: string;
    display: string;
    label: string;
    shadowedBy?: string;
}[]