Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
591 B
Text
17 lines
591 B
Text
export declare const enum ArrowKey {
|
|
UP = "ArrowUp",
|
|
DOWN = "ArrowDown",
|
|
LEFT = "ArrowLeft",
|
|
RIGHT = "ArrowRight"
|
|
}
|
|
export declare const enum PageKey {
|
|
UP = "PageUp",
|
|
DOWN = "PageDown"
|
|
}
|
|
export declare const ENTER_KEY = "Enter";
|
|
export declare const ESCAPE_KEY = "Escape";
|
|
export declare const TAB_KEY = "Tab";
|
|
export declare const ARROW_KEYS: Set<ArrowKey>;
|
|
export declare function keyIsArrowKey(key: string): key is ArrowKey;
|
|
export declare function isEscKey(event: KeyboardEvent): boolean;
|
|
export declare function isEnterOrSpaceKey(event: KeyboardEvent): boolean;
|