UNPKG

radish

Version:

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

13 lines (12 loc) 283 B
import type { Plugin } from "esbuild"; interface Options { src: string; } export interface ContentMap { [key: string]: unknown; } export declare const contentMap: () => { [key: string]: any; }; export declare const contentPlugin: (options: Options) => Plugin; export {};