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
24 lines
1.1 KiB
Plaintext
24 lines
1.1 KiB
Plaintext
import type { ClientCollectionConfig, ClientConfig, Column, ListQuery, PaginatedDocs, PayloadRequest, SanitizedCollectionConfig, SanitizedFieldsPermissions, SelectType, ViewTypes, Where } from 'payload';
|
|
export declare const handleGroupBy: ({ clientCollectionConfig, clientConfig, collectionConfig, collectionSlug, columns, customCellProps, drawerSlug, enableRowSelections, fieldPermissions, query, req, select, trash, user, viewType, where: whereWithMergedSearch, }: {
|
|
clientCollectionConfig: ClientCollectionConfig;
|
|
clientConfig: ClientConfig;
|
|
collectionConfig: SanitizedCollectionConfig;
|
|
collectionSlug: string;
|
|
columns: any[];
|
|
customCellProps?: Record<string, any>;
|
|
drawerSlug?: string;
|
|
enableRowSelections?: boolean;
|
|
fieldPermissions?: SanitizedFieldsPermissions;
|
|
query?: ListQuery;
|
|
req: PayloadRequest;
|
|
select?: SelectType;
|
|
trash?: boolean;
|
|
user: any;
|
|
viewType?: ViewTypes;
|
|
where: Where;
|
|
}) => Promise<{
|
|
columnState: Column[];
|
|
data: PaginatedDocs;
|
|
Table: null | React.ReactNode | React.ReactNode[];
|
|
}>;
|
|
//# sourceMappingURL=handleGroupBy.d.ts.map |