Files
klz-cables.com/.pnpm-store/v10/files/6e/4b368df7bac44e25cfc9deb18a339caede07cb714af56d30d6788bb04ad8bea827898fad16998a783df1aebca2d4f67033bef21374ddceaf7f5909b28ef3c2
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

22 lines
830 B
Plaintext

import type { BuildTableStateArgs, ClientConfig, CollectionPreferences, Column, ErrorResult, PaginatedDocs, ServerFunction } from 'payload';
type BuildTableStateSuccessResult = {
clientConfig?: ClientConfig;
data: PaginatedDocs;
errors?: never;
preferences: CollectionPreferences;
renderedFilters: Map<string, React.ReactNode>;
state: Column[];
Table: React.ReactNode;
};
type BuildTableStateErrorResult = {
data?: any;
renderedFilters?: never;
state?: never;
Table?: never;
} & ({
message: string;
} | ErrorResult);
export type BuildTableStateResult = BuildTableStateErrorResult | BuildTableStateSuccessResult;
export declare const buildTableStateHandler: ServerFunction<BuildTableStateArgs, Promise<BuildTableStateResult>>;
export {};
//# sourceMappingURL=buildTableState.d.ts.map