frontend/types/hooks.ts
SauceyRed 704de034b7
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
feat(wip): start working on seeing if emitting events between component and parent works
2025-07-09 07:40:20 +02:00

7 lines
192 B
TypeScript

import type { RuntimeNuxtHooks } from 'nuxt/schema';
declare module "nuxt/schema" {
interface RuntimeNuxtHooks {
"app:message:right-clicked": (payload: { messageId: string }) => void
}
}