UNPKG

@progress/kendo-angular-gantt

Version:
27 lines (26 loc) 911 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * @hidden */ export declare const isArrowUpDownKey: (code: string) => boolean; /** * @hidden */ export declare const isNavigationKey: (code: string) => boolean; /** * @hidden */ export declare const isExpandCollapseKey: (code: string, altKey: boolean) => boolean; /** * @hidden */ export declare const isViewDigitKey: (code: string) => boolean; /** * @hidden * * Returns the corresponding view index for the pressed digit key (Digit 1 => 0, Digit 2 => 1, etc.). */ export declare const getIndexFromViewDigitKeyCode: (code: string) => number;