@platform/react.ssr
Version:
A lightweight SSR (server-side-rendering) system for react apps bundled with ParcelJS and hosted on S3.
21 lines (20 loc) • 492 B
TypeScript
import { Config } from '../config';
declare type PayloadType = 'MANIFEST' | 'BUNDLE';
export declare function run(args?: {
type?: PayloadType;
silent?: boolean;
}): Promise<void>;
export declare function bundle(args?: {
config?: Config;
version?: string;
prompt?: boolean;
silent?: boolean;
}): Promise<{
version: string;
bundleDir: string;
}>;
export declare function manifest(args?: {
config?: Config;
silent?: boolean;
}): Promise<void>;
export {};