UNPKG

stone-kit

Version:
14 lines (13 loc) 409 B
import { ILot } from './LotCard'; export interface ICommercialLotCard { lot: ILot; /** Скрывать финансовые параметры */ hidFinParam?: boolean; imgNode?: React.ReactNode; addClassname?: string; isVertical?: boolean; onPriceClickHandler?: () => void; isFavorite?: boolean; isMoreDetails?: boolean; favoriteClickHandler?: (lot: ILot) => void; }