UNPKG

@redocly/theme

Version:

Shared UI components lib

9 lines (8 loc) 373 B
import React from 'react'; import type { CatalogEntityConfig } from '@redocly/config'; import type { BffCatalogEntity } from '../../../core/types'; export type CatalogCardViewProps = { entities: BffCatalogEntity[]; catalogConfig: CatalogEntityConfig; }; export declare function CatalogCardView({ entities, catalogConfig }: CatalogCardViewProps): React.JSX.Element;