UNPKG

vuetify

Version:

Vue Material Component Framework

14 lines (13 loc) 466 B
// Types import type { ComponentPublicInstance } from 'vue'; export interface MutationOptions { attr?: boolean; char?: boolean; child?: boolean; sub?: boolean; once?: boolean; immediate?: boolean; } export declare function useMutationObserver(handler?: MutationCallback, options?: MutationOptions): { mutationRef: import("vue").Ref<HTMLElement | ComponentPublicInstance | undefined, HTMLElement | ComponentPublicInstance | undefined>; };