UNPKG

payload

Version:

Node, React, Headless CMS and Application Framework built on Next.js

9 lines 379 B
import type React from 'react'; import type { ServerProps } from '../../config/types.js'; export type WithServerSidePropsComponentProps = { [key: string]: any; Component: React.ComponentType<any>; serverOnlyProps: ServerProps; }; export type WithServerSidePropsComponent = React.FC<WithServerSidePropsComponentProps>; //# sourceMappingURL=WithServerSideProps.d.ts.map