UNPKG

drip-table

Version:

A tiny and powerful enterprise-class solution for building tables.

13 lines (12 loc) 439 B
/** * This file is part of the drip-table project. * @link : https://drip-table.jd.com/ * @author : Emil Zhai (root@derzh.com) * @modifier : Emil Zhai (root@derzh.com) * @copyright: Copyright (c) 2021 JD Network Technology Co., Ltd. */ /// <reference types="react" /> export interface TableLayoutComponentProps { header?: (() => React.ReactNode) | React.ReactNode; footer?: (() => React.ReactNode) | React.ReactNode; }