vuetify
Version:
Vue Material Component Framework
13 lines (12 loc) • 457 B
TypeScript
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>;
};