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.

12 lines (11 loc) 557 B
import { ObjectPlugin, Plugin } from "#app/nuxt"; import { RouteLocationNormalizedLoaded, RouteRecordNormalized } from "vue-router"; //#region src/pages/runtime/plugins/check-if-page-unused.d.ts declare function findUnrenderedNestedPage(route: RouteLocationNormalizedLoaded): { parent: RouteRecordNormalized; child: RouteRecordNormalized; } | undefined; declare const NESTED_PAGE_CONFIRMATION_DELAY = 1000; declare const plugin: Plugin & ObjectPlugin; //#endregion export { NESTED_PAGE_CONFIRMATION_DELAY, plugin as default, findUnrenderedNestedPage };