mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-27 17:50:53 +01:00
18 lines
588 B
Go
18 lines
588 B
Go
import { Ref } from 'vue';
|
|
import { Table } from 'element-plus/lib/components/table/src/table/defaults';
|
|
|
|
declare const useColumns: (
|
|
props: TableProps,
|
|
table: Ref<Table<any> | undefined>,
|
|
wrapper: Ref<Element>
|
|
) => {
|
|
internalSelectedColumnKeys: Ref<string[]>;
|
|
columnsMap: import('vue').ComputedRef<TableColumnsMap<any>>;
|
|
columnsTransferVisible: Ref<boolean>;
|
|
selectedColumns: import('vue').ComputedRef<TableColumn<any>[]>;
|
|
onShowColumnsTransfer: () => void;
|
|
onHideColumnsTransfer: () => void;
|
|
onColumnsChange: (value: string[]) => void;
|
|
};
|
|
export default useColumns;
|