Skip to content

Commit

Permalink
fix typescript type import compliance
Browse files Browse the repository at this point in the history
  • Loading branch information
Joey Berkovitz committed May 24, 2022
1 parent 42a9778 commit 893771f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/components/JsonTreeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
</template>

<script lang="ts">
import { computed, defineComponent, SetupContext } from "vue";
import { computed, defineComponent, type SetupContext } from "vue";
import JsonTreeViewItem, {
ItemType,
ValueTypes,
ItemData,
type ValueTypes,
type ItemData,
} from "./JsonTreeViewItem.vue";
type Props = {
Expand Down
4 changes: 2 additions & 2 deletions src/components/JsonTreeViewItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@
import {
computed,
defineComponent,
PropType,
type PropType,
reactive,
SetupContext,
type SetupContext,
} from "vue";
import { then, when } from "switch-ts";
Expand Down

0 comments on commit 893771f

Please sign in to comment.