UNPKG

nuxt

Version:

Nuxt is a free and open-source framework with an intuitive and extendable way to create type-safe, performant and production-grade full-stack web applications and websites with Vue.js.

16 lines (15 loc) 518 B
import { AnnouncerPoliteness } from "../composables/announcer.js"; import { DefineSetupFnComponent, SlotsType, VNode } from "vue"; //#region src/app/components/nuxt-announcer.d.ts interface NuxtAnnouncerProps { atomic?: boolean; politeness?: AnnouncerPoliteness; } type NuxtAnnouncerSlots = SlotsType<{ default?: (props: { message: string; }) => VNode[]; }>; declare const NuxtAnnouncer: DefineSetupFnComponent<NuxtAnnouncerProps, {}, NuxtAnnouncerSlots>; //#endregion export { NuxtAnnouncer as default };