Files
booking-ewa/src/env.d.ts
T
Kaloyan Danchev 87dadf1def Initial commit: booking-ewa v1.0.0
Embedded Web App for EV charging slot bookings. Express backend with JWT
auth and AMPECO Public API proxy. React SPA with booking CRUD, availability
checking, and runtime design token theming.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-18 19:34:13 +02:00

21 lines
520 B
TypeScript

/// <reference types="vite/client" />
declare module '*.css' {
const content: string;
export default content;
}
declare module '@ampeco/design-tokens' {
export function applyTheme(theme: 'LIGHT' | 'DARK', tokens?: Record<string, string>): void;
}
declare module '@ampeco/design-tokens/css/variables.css' {
const content: string;
export default content;
}
declare module '@ampeco/ewa-ui/plugin' {
import type { PluginCreator } from 'tailwindcss/types/config';
export const ewaUiPlugin: PluginCreator;
}