Resolved all ts lint errors on build

This commit is contained in:
2022-08-11 18:37:33 +02:00
parent f7fe582200
commit 41067aae84
19 changed files with 130 additions and 66 deletions

View File

@@ -11,10 +11,10 @@
<script setup lang="ts">
import { defineProps, computed } from "vue";
import { useStore } from "vuex";
import type { MediaTypes, CreditTypes } from "../interfaces/IList";
import type { ICast, ICrew, IMovie, IShow } from "../interfaces/IList";
interface Props {
creditItem: MediaTypes | CreditTypes;
creditItem: ICast | ICrew | IMovie | IShow;
}
const props = defineProps<Props>();