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) 542 B
import { Politeness } from "../composables/route-announcer.js"; import { DefineSetupFnComponent, SlotsType, VNode } from "vue"; //#region src/app/components/nuxt-route-announcer.d.ts interface NuxtRouteAnnouncerProps { atomic?: boolean; politeness?: Politeness; } type NuxtRouteAnnouncerSlots = SlotsType<{ default?: (props: { message: string; }) => VNode[]; }>; declare const NuxtRouteAnnouncer: DefineSetupFnComponent<NuxtRouteAnnouncerProps, {}, NuxtRouteAnnouncerSlots>; //#endregion export { NuxtRouteAnnouncer as default };