Skip to content

Commit

Permalink
chore(vue): missing types
Browse files Browse the repository at this point in the history
  • Loading branch information
harlan-zw committed Jan 21, 2025
1 parent 5f7c311 commit 4f8eb51
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
14 changes: 5 additions & 9 deletions packages/vue/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
import { defineHeadPlugin } from '@unhead/shared'
import { createHeadCore } from 'unhead'
import { resolveUnrefHeadInput } from './utils'

/**
* @deprecated TODO remove
*/
export const CapoPlugin = () => defineHeadPlugin({})
// composables
export * from './autoImports'

// core
export {
Expand All @@ -17,11 +14,10 @@ export {
resolveUnrefHeadInput,
}

// composables
export * from './autoImports'
export * from './composables'
export {
headSymbol,
} from './install'
// types
export * from './types'
export * from './VueHeadMixin'

export type { ActiveHeadEntry, Head, HeadEntryOptions, HeadTag, MergeHead, Unhead } from '@unhead/schema'
1 change: 1 addition & 0 deletions packages/vue/src/types/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from './safeSchema'
export * from './schema'
export * from './util'
export type { ActiveHeadEntry, Head, HeadEntryOptions, HeadTag, MergeHead, ResolvedHead, Unhead } from '@unhead/schema'

0 comments on commit 4f8eb51

Please sign in to comment.