ideaz-element
Version:
<p align="center"> <a href="" target="_blank" rel="noopener noreferrer"> <img src="./docs/public/logo.svg" alt="Ideaz Element" width="180" style="width: 180px;" /> </a> </p>
13 lines (11 loc) • 521 B
TypeScript
import { Ref } from 'vue';
import { ITableProps } from '../props';
import { TableCol } from '../../../types';
export declare function useTableColumns(props: ITableProps, emit: any, tableData: Ref<any>): {
formatTableCols: globalThis.ComputedRef<TableCol<any>[]>;
middleTableCols: import('vue').ShallowRef<TableCol<any>[]>;
originFormatTableCols: globalThis.ComputedRef<TableCol<any>[]>;
sortTableCols: import('vue').ShallowRef<TableCol<any>[]>;
tableKey: Ref<number>;
zTableFormRef: Ref<any>;
};