UNPKG

linkmore-design

Version:

🌈 πŸš€lmη»„δ»ΆεΊ“γ€‚πŸš€

26 lines (25 loc) β€’ 670 B
import React from 'react'; import { ModalProps } from '../../modal'; import { ColumnProps } from '../../table'; interface IProps extends ModalProps { data?: Record<string, unknown>[]; type: 'line' | 'pie' | 'bar' | null; columns?: (ColumnProps<any> & { etype: string; })[]; selectInfo?: { start: { i: number; j: number; }; end: { i: number; j: number; }; }; rowKey?: string; deepDataSource?: Record<string, unknown>[]; } /** i 是葌 j ζ˜―εˆ— */ declare const TableChartsModal: (props: IProps) => React.JSX.Element; export default TableChartsModal;