rasengan
Version:
The modern React Framework
9 lines (8 loc) • 348 B
TypeScript
import { FunctionComponent } from "react";
import { AppConfig } from "../../core/config/type.js";
import { TemplateProps } from "../../routing/types.js";
export declare const renderIndexHTML: (template: FunctionComponent<TemplateProps>, options: {
rootPath: string;
config: AppConfig;
enableIndexFallback: boolean;
}) => Promise<void>;