UNPKG

@firecms/core

Version:

Awesome Firebase/Firestore-based headless open-source CMS

10 lines (9 loc) 469 B
export interface EntityTableCellActionsProps { showError: false | Error | undefined; disabled: boolean; showExpandIcon: boolean | undefined; selected: boolean | undefined; openPopup?: (cellRect: DOMRect | undefined) => void; children?: React.ReactNode; } export declare function EntityTableCellActions({ showError, disabled, showExpandIcon, selected, openPopup, children }: EntityTableCellActionsProps): import("react/jsx-runtime").JSX.Element;