- Update styled.d.ts with comprehensive theme types - Add ui-packages.d.ts and vite-env.d.ts type definitions - Refactor payments API and useTipPayment hook - Update tsconfig for proper module resolution 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_PAYMENTS_API_URL: string
|
|
readonly DEV: boolean
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|