This repository has been archived on 2026-05-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
tippspiel/frontend/src/global.d.ts
T
Ronny cb095126ef feat: add bottom navigation bar (mobile-first)
Fixed bottom nav with Home/Spiele/Rangliste/Profil tabs.
Desktop keeps header nav. Admin hidden behind gear icon.
Main content padded to avoid overlap with bottom nav.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-11 18:59:00 +02:00

18 lines
303 B
TypeScript

interface Window {
_devUser?: number;
}
interface ImportMetaEnv {
readonly VITE_TEST_MODE?: string;
readonly DEV: boolean;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}
declare module '*.module.css' {
const classes: { readonly [key: string]: string };
export default classes;
}