Files
bunext/dist/presets/components/head.d.ts
T
2026-03-24 07:18:57 +01:00

5 lines
297 B
TypeScript

import type { DetailedHTMLProps, HTMLAttributes, PropsWithChildren } from "react";
type Props = PropsWithChildren<DetailedHTMLProps<HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>>;
export default function Head({ children, ...props }: Props): import("react/jsx-runtime").JSX.Element;
export {};