UNPKG

ssr-to-html

Version:

Crawl a server rendered application and output html files

11 lines (10 loc) 215 B
interface Options { out: string; cmd: string; port?: number; wait?: number; paths?: string[]; notFoundPath?: string; } export default function crawl(opts: Options): Promise<void>; export {};