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.

13 lines (12 loc) 389 B
import { DefineSetupFnComponent, SlotsType, VNode } from "vue"; //#region src/app/components/dev-only.d.ts type DevOnlySlots = SlotsType<{ default?: () => VNode[]; /** * If you ever require to have a replacement during production. */ fallback?: () => VNode[]; }>; declare const DevOnly: DefineSetupFnComponent<{}, {}, DevOnlySlots>; //#endregion export { DevOnly as default };