zp-bee
Version:
zp-bee,是一款基于 Dumi,由 React + TypeScript 开发的组件库 🎉。
11 lines (10 loc) • 335 B
TypeScript
/// <reference types="react" />
import { IMyTableBaseProps as IMyTableProps } from './AntTable';
interface ISummaryRow {
[propName: string]: any;
}
export interface IMyTableBaseProps extends IMyTableProps {
summaryRow?: ISummaryRow;
}
declare const _default: (props: IMyTableBaseProps) => JSX.Element;
export default _default;