MCPcopy Create free account
hub / github.com/devnomad-byte/EvolveHub / AlertOptions

Interface AlertOptions

frontend/src/composables/useAlert.ts:3–7  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import { ref, h, createApp } from 'vue'
2
3export interface AlertOptions {
4 title: string
5 message: string
6 confirmText?: string
7}
8
9const visible = ref(false)
10const options = ref<AlertOptions>({ title: '', message: '' })

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected