react-application-core
Version:
A react-based application core for the business applications.
18 lines (17 loc) • 490 B
TypeScript
/// <reference types="react" />
import { ICardListProps } from '../../definition';
import { BaseList } from '../list/base-list.component';
export declare class CardList extends BaseList<ICardListProps> {
/**
* @stable [04.05.2020]
* @returns {JSX.Element}
*/
protected getView(): JSX.Element;
/**
* @stable [04.05.2020]
* @param {IEntity} entity
* @param {number} index
* @returns {JSX.Element}
*/
private getItem;
}