Skip to content

Commit 4f75f06

Browse files
committed
chore: broken type import
1 parent a953945 commit 4f75f06

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/runtime/components/ScriptGoogleMaps.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
} from 'vue'
1414
import { type QueryObject, withQuery } from 'ufo'
1515
import { defu } from 'defu'
16-
import type { ElementScriptTrigger } from '../composables/useElementScriptTrigger'
16+
import type { ElementScriptTrigger } from '../types'
1717
import { scriptRuntimeConfig } from '../utils'
1818
import { resolveComponent, useElementScriptTrigger, useHead, useScriptGoogleMaps } from '#imports'
1919

src/runtime/components/ScriptVimeoPlayer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/// <reference types="vimeo__player" />
33
import { type HTMLAttributes, type ImgHTMLAttributes, computed, onBeforeUnmount, onMounted, ref, watch } from 'vue'
44
import { defu } from 'defu'
5-
import type { ElementScriptTrigger } from '../composables/useElementScriptTrigger'
5+
import type { ElementScriptTrigger } from '../types'
66
import { useAsyncData, useElementScriptTrigger, useHead, useScriptVimeoPlayer } from '#imports'
77
88
const props = withDefaults(defineProps<{

src/runtime/components/ScriptYouTubePlayer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/// <reference types="youtube" />
33
import { type HTMLAttributes, type ImgHTMLAttributes, type Ref, computed, onMounted, ref, watch } from 'vue'
44
import { defu } from 'defu'
5-
import type { ElementScriptTrigger } from '../composables/useElementScriptTrigger'
5+
import type { ElementScriptTrigger } from '../types'
66
import { useElementScriptTrigger, useHead, useScriptYouTubePlayer } from '#imports'
77
88
const props = withDefaults(defineProps<{

0 commit comments

Comments
 (0)