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.

15 lines (14 loc) 602 B
import type { DefineComponent, ExtractPublicPropTypes, MaybeRef, PropType } from 'vue'; import type { PageMeta } from '../../pages/runtime/composables.js'; declare const nuxtLayoutProps: { name: { type: PropType<unknown extends PageMeta["layout"] ? MaybeRef<string | false> : PageMeta["layout"]>; default: null; }; fallback: { type: PropType<unknown extends PageMeta["layout"] ? MaybeRef<string> : PageMeta["layout"]>; default: null; }; }; declare const _default: DefineComponent<ExtractPublicPropTypes<typeof nuxtLayoutProps>>; export default _default;