payload
Version:
Node, React, Headless CMS and Application Framework built on Next.js
9 lines • 379 B
TypeScript
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