drip-table
Version:
A tiny and powerful enterprise-class solution for building tables.
15 lines (14 loc) • 847 B
TypeScript
/**
* This file is part of the drip-table project.
* @link : https://drip-table.jd.com/
* @author : renwenci (ararakikon@163.com)
* @modifier : renwenci (ararakikon@163.com)
* @copyright: Copyright (c) 2021 JD Network Technology Co., Ltd.
*/
/// <reference types="react" />
import './index.less';
import { DripTableExtraOptions, DripTableRecordTypeBase, DripTableRecordTypeWithSubtable } from "../../types";
import { type ExtractDripTableExtraOption } from "../../index";
import { TableLayoutComponentProps } from '../types';
declare function CardLayout<RecordType extends DripTableRecordTypeWithSubtable<DripTableRecordTypeBase, ExtractDripTableExtraOption<ExtraOptions, 'SubtableDataSourceKey'>>, ExtraOptions extends Partial<DripTableExtraOptions> = never>(props: TableLayoutComponentProps): JSX.Element;
export default CardLayout;