radish
Version:
Radish is a React-based static site generator that outputs plain HTML and CSS.
13 lines (12 loc) • 363 B
TypeScript
import type { ComponentType } from "react";
import type { HelmetServerState } from "react-helmet-async";
import type { Props } from "../lib/Document";
export declare type PageProps = Props;
export interface Page {
default: ComponentType<Props>;
paths?(content: any): string[];
head: {
helmet: HelmetServerState;
};
layout?: boolean;
}