Skip to content

Commit ba4e53f

Browse files
committed
fix: use explicit type imports
resolves #514
1 parent 13836a0 commit ba4e53f

File tree

3 files changed

+82
-17
lines changed

3 files changed

+82
-17
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@
8787
"prettier": "3.2.4",
8888
"typescript": "5.3.3",
8989
"vitest": "1.1.3",
90-
"vue": "3.4.7"
90+
"vue": "3.4.7",
91+
"vue-tsc": "^1.8.27"
9192
},
9293
"resolutions": {
9394
"@nuxt/kit": "3.9.1",

pnpm-lock.yaml

Lines changed: 77 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/runtime/components/IonAnimation.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<script setup lang="ts">
22
import { onMounted, onBeforeUnmount, ref } from 'vue'
3-
import {
4-
createAnimation,
3+
4+
import { createAnimation } from '@ionic/vue'
5+
import type {
56
Animation,
67
AnimationDirection,
78
AnimationFill,

0 commit comments

Comments
 (0)