hono
Version:
Web framework built on Web Standards
14 lines (13 loc) • 708 B
TypeScript
import type { IntrinsicElements } from '../intrinsic-elements';
import type { FC, PropsWithChildren } from '../types';
export declare const title: FC<PropsWithChildren>;
export declare const script: FC<PropsWithChildren<IntrinsicElements["script"]>>;
export declare const style: FC<PropsWithChildren<IntrinsicElements["style"]>>;
export declare const link: FC<PropsWithChildren<IntrinsicElements["link"]>>;
export declare const meta: FC<PropsWithChildren>;
export declare const form: FC<PropsWithChildren<{
action?: Function | string;
method?: "get" | "post";
}>>;
export declare const input: (props: PropsWithChildren) => unknown;
export declare const button: (props: PropsWithChildren) => unknown;