87dadf1def
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>
21 lines
520 B
TypeScript
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;
|
|
}
|