UNPKG

@sandlada/vue-mdc

Version:

![Vue MDC Logo](https://raw.githubusercontent.com/sandlada/vue-mdc/refs/heads/main/docs/vue-mdc-cover.png)

14 lines 458 B
import { type Ref, type WatchCallback, type WatchOptions } from 'vue'; type TObserveProp = { id: string; property: Ref<boolean | string | number>; callback: WatchCallback; options?: WatchOptions; }; export declare function useObserveProps(propMap: Array<TObserveProp>): { observe: (prop: TObserveProp) => void; unobserve: (propId: string) => void; unobseveAll: () => void; }; export {}; //# sourceMappingURL=observe-props.d.ts.map