Files
klz-cables.com/.pnpm-store/v10/files/4c/47f6febbbc748eaee9075c449b3e04f13d9bee1ea3636ea59bb6571893be4ae367ae68a15c71b0cdc26855383b812dda8df4291eb64a1894857eb2443e7857
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

17 lines
683 B
Plaintext

import type { DocumentEvent } from 'payload';
import React from 'react';
export declare const DocumentEventsProvider: React.FC<{
children: React.ReactNode;
}>;
/**
* The useDocumentEvents hook provides a way of subscribing to cross-document events,
* such as updates made to nested documents within a drawer.
* This hook will report document events that are outside the scope of the document currently being edited.
*
* @link https://payloadcms.com/docs/admin/react-hooks#usedocumentevents
*/
export declare const useDocumentEvents: () => {
mostRecentUpdate: DocumentEvent | null;
reportUpdate: (event: DocumentEvent) => void;
};
//# sourceMappingURL=index.d.ts.map