17 lines
588 B
TypeScript
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";
|
||
|
|
}
|