UNPKG

hongluan-ui

Version:
10 lines (9 loc) 375 B
import type { Ref } from 'vue'; import type { ColumnType, ResizeOption } from '../simple-table'; export interface ResizerCellElement extends HTMLTableCellElement { mouseDown: boolean; oldX: number; oldWidth: number; } declare function useResizer(resize: boolean | ResizeOption, cols: Ref<ColumnType[]>, table: Ref<HTMLTableElement>): void; export { useResizer };