utils-helper.d.ts 362 Bytes
import type { TableColumnCtx } from '../table-column/defaults';
import type { TableHeaderProps } from '.';
declare function useUtils<T>(props: TableHeaderProps<T>): {
    isGroup: import("vue").ComputedRef<boolean>;
    toggleAllSelection: (event: Event) => void;
    columnRows: import("vue").ComputedRef<TableColumnCtx<unknown>[]>;
};
export default useUtils;