Files
klz-cables.com/.pnpm-store/v10/files/d0/d65bad3a11489612e31dcf5de92a1aef790802c61177234d989f68b50e0d9a588c3a4bd076556a5da319b59c12545c308efb6a75067139502fd18ebe078923
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

21 lines
697 B
Plaintext

import type { UploadCollectionSlug } from 'payload';
import React from 'react';
type UploadHandler = (args: {
file: File;
updateFilename: (filename: string) => void;
}) => Promise<unknown>;
export type UploadHandlersContext = {
getUploadHandler: (args: {
collectionSlug: UploadCollectionSlug;
}) => null | UploadHandler;
setUploadHandler: (args: {
collectionSlug: UploadCollectionSlug;
handler: UploadHandler;
}) => unknown;
};
export declare const UploadHandlersProvider: ({ children }: {
children: any;
}) => React.JSX.Element;
export declare const useUploadHandlers: () => UploadHandlersContext;
export {};
//# sourceMappingURL=index.d.ts.map