Files
klz-cables.com/.pnpm-store/v10/files/89/2ba8194aeb2ec60928a672ef93fabe21d0758e463a58c532dc31e31197982d113e106cb8f2edeca8d145a57eff2b84fc42213a87f23267944c8cb69908e4eb
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

15 lines
643 B
Plaintext

import type { AdminViewServerProps, BuildCollectionFolderViewResult, ListQuery } from 'payload';
export type BuildCollectionFolderViewStateArgs = {
disableBulkDelete?: boolean;
disableBulkEdit?: boolean;
enableRowSelections: boolean;
folderID?: number | string;
isInDrawer?: boolean;
overrideEntityVisibility?: boolean;
query: ListQuery;
} & AdminViewServerProps;
/**
* Builds the entire view for collection-folder views on the server
*/
export declare const buildCollectionFolderView: (args: BuildCollectionFolderViewStateArgs) => Promise<BuildCollectionFolderViewResult>;
//# sourceMappingURL=buildView.d.ts.map