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
20 lines
993 B
Plaintext
20 lines
993 B
Plaintext
import type { I18nClient } from '@payloadcms/translations';
|
|
import type { ClientField, DefaultCellComponentProps, Document, Field, Payload, PayloadRequest, ViewTypes } from 'payload';
|
|
type RenderCellArgs = {
|
|
readonly clientField: ClientField;
|
|
readonly collectionSlug: string;
|
|
readonly columnIndex: number;
|
|
readonly customCellProps: DefaultCellComponentProps['customCellProps'];
|
|
readonly doc: Document;
|
|
readonly enableRowSelections: boolean;
|
|
readonly i18n: I18nClient;
|
|
readonly isLinkedColumn: boolean;
|
|
readonly payload: Payload;
|
|
readonly req?: PayloadRequest;
|
|
readonly rowIndex: number;
|
|
readonly serverField: Field;
|
|
readonly viewType?: ViewTypes;
|
|
};
|
|
export declare function renderCell({ clientField, collectionSlug, columnIndex, customCellProps, doc, enableRowSelections, i18n, isLinkedColumn, payload, req, rowIndex, serverField, viewType, }: RenderCellArgs): import("react").JSX.Element;
|
|
export {};
|
|
//# sourceMappingURL=renderCell.d.ts.map |