ios-projects/react/src/vite-env.d.ts
WangDL c10e299dc0 feat: add React UI prototype for iOS UX reference
- 22-page high-fidelity design gallery
- shadcn/ui + Tailwind CSS + Vite
- iPhone frame wrapper for realistic preview
- Bottom tab bar component
- All pages match ZhiXi app screens
2026-05-09 11:21:05 +08:00

17 lines
588 B
TypeScript

/// <reference types="vite/client" />
/// <reference types="react" />
declare namespace React {}
declare namespace JSX {
type Element = React.JSX.Element
type ElementType = React.JSX.ElementType
type IntrinsicElements = React.JSX.IntrinsicElements
interface IntrinsicAttributes extends React.JSX.IntrinsicAttributes {}
interface ElementChildrenAttribute extends React.JSX.ElementChildrenAttribute {}
type LibraryManagedAttributes<C, P> = React.JSX.LibraryManagedAttributes<C, P>
}
declare module "lucide-react" {
export * from "lucide-react/dist/lucide-react.suffixed";
}