Skip to content

Commit fb76114

Browse files
authored
fix: type pollution in shared-imports.d (#3923)
1 parent 4adaa0b commit fb76114

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/runtime/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ export type ComposableContext = {
4343
/** Enable/disable hreflangLinks */
4444
hreflangLinks: boolean
4545
}
46-
head: ReturnType<typeof useHead>
47-
_head: ReturnType<typeof useHead> | undefined
46+
head: ReturnType<typeof import('nuxt/app').useHead>
47+
_head: ReturnType<typeof import('nuxt/app').useHead> | undefined
4848
metaState: Required<I18nHeadMetaInfo>
4949
seoSettings: I18nHeadOptions
5050
localePathPayload: Record<string, Record<string, string> | false>

0 commit comments

Comments
 (0)