@redocly/theme
Version:
Shared UI components lib
9 lines (8 loc) • 373 B
TypeScript
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;