Files
klz-cables.com/.pnpm-store/v10/files/e7/0bf3669aa165b2a6ea867a7d087d04d2f49e3e0699b40cca06dd2b2f87ca585ce9b6cb48f994ea82326b034d25b5b85bf891a6e9a57ce75ed2fbcf1347536e
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

20 lines
632 B
Plaintext

import type { ServerFunction } from 'payload';
import React from 'react';
export type RenderWidgetServerFnArgs = {
/**
* Instance-specific data for this widget
*/
/**
* The slug of the widget to render
*/
widgetSlug: string;
};
export type RenderWidgetServerFnReturnType = {
component: React.ReactNode;
};
/**
* Server function to render a widget on-demand.
* Similar to render-field but specifically for dashboard widgets.
*/
export declare const renderWidgetHandler: ServerFunction<RenderWidgetServerFnArgs, RenderWidgetServerFnReturnType>;
//# sourceMappingURL=renderWidgetServerFn.d.ts.map