Rocky_Mountain_Vending/.pnpm-store/v10/files/b0/2d83daa5ed301e61936c2ce8e52d640c1bac3f9d4b003bf539f99a75e928f7745cbdc2f2121d823bbb78b5ebb044c3ab28547846c6fe97542c4e38aab0e805
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

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;