@platform/react.ssr
Version:
A lightweight SSR (server-side-rendering) system for react apps bundled with ParcelJS and hosted on S3.
15 lines (14 loc) • 384 B
TypeScript
import * as t from './types';
export * from '../common';
export { Manifest, Site } from '../manifest';
export { t };
export declare const R: {
groupBy: {
<T>(fn: (a: T) => string, list: readonly T[]): {
[index: string]: T[];
};
<T_1>(fn: (a: T_1) => string): (list: readonly T_1[]) => {
[index: string]: T_1[];
};
};
};