/** * @description table api type * @author 阿怪 * @date 2022/4/17 02:04 * @version v1.0.0 * * @name m-table * @docDescription Table component with shuimo-ui style. * 水墨组件的表格组件。 * @docUrl https://shuimo.design/table * * 江湖的业务千篇一律,复杂的代码好几百行。 */ export declare type TableProps = { /** * @description table data * 表格内容 * @type any[] */ data?: Array, /** * @description table height * 表格高度 * @type string */ height?: string | null, /** * @description auto add param class * 自动添加key class * @type boolean * @default false */ paramClass?: boolean };