mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 18:34:50 +00:00
e38e1de740
Co-authored-by: Pooya Parsa <pooya@pi0.io>
17 lines
515 B
TypeScript
17 lines
515 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, useMeta } from '#head'
|
|
|
|
export const isVue2 = false
|
|
export const isVue3 = true
|