UNPKG

radish

Version:

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

10 lines (9 loc) 256 B
import type { OutputFile, Plugin } from "esbuild"; interface Options { src: string; dest: string; prefix: string; } export declare const cssDeps: Map<string, OutputFile>; export declare const cssPlugin: (options: Options) => Plugin; export {};