UNPKG

@volverjs/ui-vue

Version:

@volverjs/ui-vue is a lightweight Vue 3 component library to accompany @volverjs/style.

11 lines (10 loc) 300 B
import type { Ref } from 'vue'; /** * Share the alert group name with all its children. * @param {Ref<string | undefined>} name the alert group name */ export declare function useAlertProvideGroup({ name, }: { name: Ref<string | undefined>; }): import("mitt").Emitter<{ close: string; }>;