mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-05-04 21:38:11 +00:00
Resolved all ts lint errors on build
This commit is contained in:
@@ -13,10 +13,16 @@
|
||||
<script setup lang="ts">
|
||||
import { defineProps } from "vue";
|
||||
import CastListItem from "src/components/CastListItem.vue";
|
||||
import type { MediaTypes, CreditTypes } from "../interfaces/IList";
|
||||
import type {
|
||||
IMovie,
|
||||
IShow,
|
||||
IPerson,
|
||||
ICast,
|
||||
ICrew
|
||||
} from "../interfaces/IList";
|
||||
|
||||
interface Props {
|
||||
cast: Array<MediaTypes | CreditTypes>;
|
||||
cast: Array<IMovie | IShow | IPerson | ICast | ICrew>;
|
||||
}
|
||||
|
||||
defineProps<Props>();
|
||||
|
||||
Reference in New Issue
Block a user