@platform/react.ssr
Version:
A lightweight SSR (server-side-rendering) system for react apps bundled with ParcelJS and hosted on S3.
12 lines (11 loc) • 303 B
TypeScript
import { Config } from '../config';
import { Manifest } from '../manifest';
import { t } from './common';
export declare function run(args: {
cli: t.ICmdApp;
config?: Config;
}): Promise<void>;
export declare function print(args: {
config: Config;
manifest: Manifest;
}): Promise<void>;