UNPKG

element-plus

Version:

A Component Library for Vue 3

8 lines (7 loc) 296 B
import type { ComputedRef } from 'vue'; import type { TableColumnCtx } from './defaults'; declare function useWatcher<T>(owner: ComputedRef<any>, props_: Partial<TableColumnCtx<T>>): { registerComplexWatchers: () => void; registerNormalWatchers: () => void; }; export default useWatcher;