ivue-material-plus
Version:
A high quality UI components Library with Vue.js
9 lines (8 loc) • 335 B
TypeScript
import type { ComputedRef } from 'vue';
import type { TableColumnCtx } from './defaults';
import type { Table } from '../table/defaults';
declare function useWatcher(parentDom: ComputedRef<Table>, _props: TableColumnCtx): {
registerNormalWatchers: () => void;
registerComplexWatchers: () => void;
};
export default useWatcher;