ivue-material-plus
Version:
A high quality UI components Library with Vue.js
8 lines (7 loc) • 302 B
TypeScript
import type { Table } from './table/defaults';
import type TableLayout from './table-layout';
declare function useLayoutObserver(root: Table): {
handleColumnsChange: (layout: TableLayout) => void;
handleScrollableWidthChange: (layout: TableLayout) => void;
};
export default useLayoutObserver;