You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
354 B
8 lines
354 B
import type { FunctionalComponent, Ref } from 'vue';
|
|
import type { TableV2GridProps } from '../grid';
|
|
import type { TableGridInstance } from '../table-grid';
|
|
declare type LeftTableProps = TableV2GridProps & {
|
|
leftTableRef: Ref<TableGridInstance | undefined>;
|
|
};
|
|
declare const LeftTable: FunctionalComponent<LeftTableProps>;
|
|
export default LeftTable;
|
|
|