@redocly/theme
Version:
Shared UI components lib
9 lines (8 loc) • 356 B
TypeScript
import React from 'react';
import { BffCatalogEntity } from '../../../core/types';
type Entity = Pick<BffCatalogEntity, 'type' | 'title' | 'summary'>;
export type CatalogEntityCellProps<T extends Entity> = {
entity: T;
};
export declare function CatalogEntityCell<T extends Entity>({ entity }: CatalogEntityCellProps<T>): React.JSX.Element;
export {};