UNPKG

radish

Version:

Radish is a React-based static site generator that outputs plain HTML and CSS.

18 lines (17 loc) 374 B
import type { ReactNode } from "react"; interface Preload { href: string; as: string; } export interface Props { children?: ReactNode; path: string; serviceWorker?: boolean; websocket?: number; preload?: Preload[]; } declare function Document(props: Props): JSX.Element; declare namespace Document { var head: any; } export default Document;