Skip to content

Commit 91b656a

Browse files
committed
fix: add type annotations for imports in App.vue and Metadata.vue
1 parent b8ae3ae commit 91b656a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { onMounted } from "vue";
44
import hljs from "highlight.js/lib/core";
55
import json from "highlight.js/lib/languages/json";
66
import {
7-
GlobalThemeOverrides,
7+
type GlobalThemeOverrides,
88
NBackTop,
99
NConfigProvider,
1010
NLayout,

src/components/result-table/Metadata.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script setup lang="ts">
22
import { h } from "vue";
33
4-
import { DataTableColumns, NDataTable, NText } from "naive-ui";
4+
import { type DataTableColumns, NDataTable, NText } from "naive-ui";
55
66
import type { Metadata, Results } from "@/types/results";
77

0 commit comments

Comments
 (0)