@firecms/core
Version:
Awesome Firebase/Firestore-based headless open-source CMS
12 lines (11 loc) • 721 B
TypeScript
import { EntityCollection, EntityTableController, SelectionController } from "../../types";
export type EntityCollectionViewStartActionsProps<M extends Record<string, any>> = {
collection: EntityCollection<M>;
path: string;
relativePath: string;
parentCollectionIds: string[];
selectionController: SelectionController<M>;
tableController: EntityTableController<M>;
collectionEntitiesCount: number;
};
export declare function EntityCollectionViewStartActions<M extends Record<string, any>>({ collection, relativePath, parentCollectionIds, path, selectionController, tableController, collectionEntitiesCount }: EntityCollectionViewStartActionsProps<M>): import("react/jsx-runtime").JSX.Element;