payload
Version:
Node, React and MongoDB Headless CMS and Application Framework
10 lines • 503 B
TypeScript
import type { SanitizedCollectionConfig } from '../../../../collections/config/types';
import type { Props as CellProps } from '../../views/collections/List/Cell/types';
import type { Column } from '../Table/types';
declare const buildColumns: ({ cellProps, collection, columns, }: {
cellProps: Partial<CellProps>[];
collection: SanitizedCollectionConfig;
columns: Pick<Column, 'accessor' | 'active'>[];
}) => Column[];
export default buildColumns;
//# sourceMappingURL=buildColumns.d.ts.map