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

@@ -38,10 +38,10 @@
import { useStore } from "vuex";
import { buildImageProxyUrl } from "../utils";
import type { Ref } from "vue";
import type { MediaTypes } from "../interfaces/IList";
import type { IMovie, IShow, IPerson, IRequest } from "../interfaces/IList";
interface Props {
listItem: MediaTypes;
listItem: IMovie | IShow | IPerson;
}
const props = defineProps<Props>();