Files
klz-cables.com/.pnpm-store/v10/files/05/a3c77316c9a5ed7e0a7be95c0ebe27d90748105075830ee474f845c34dd4b5355a8343003fabf71ec2222bdbe8c045d44b6cdddc5b59a1c9f88248d03c5d4a
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

9 lines
379 B
Plaintext

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