mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-14 12:48:16 +00:00
17 lines
506 B
TypeScript
17 lines
506 B
TypeScript
/// <reference path="types/augments.d.ts" />
|
|
|
|
export * from './nuxt'
|
|
export * from './composables'
|
|
export * from './components'
|
|
export * from './config'
|
|
|
|
// eslint-disable-next-line import/no-restricted-paths
|
|
export type { PageMeta } from '../pages/runtime'
|
|
// eslint-disable-next-line import/no-restricted-paths
|
|
export type { MetaObject } from '../head/runtime'
|
|
// eslint-disable-next-line import/no-restricted-paths
|
|
export { useHead } from '#head'
|
|
|
|
export const isVue2 = false
|
|
export const isVue3 = true
|