import { Ref, ref } from 'vue' import { noop } from '@/utils' import MessageToaster from '@/components/ui/MessageToaster.vue' import DialogBox from '@/components/ui/DialogBox.vue' export const MessageToasterStub: Ref> = ref({ info: noop, success: noop, warning: noop, error: noop }) export const DialogBoxStub: Ref> = ref({ info: noop, success: noop, warning: noop, error: noop, confirm: noop })