make imdbId optional

This commit is contained in:
mrjvs
2023-09-06 19:45:58 +02:00
parent fa8e6e4bd5
commit 3853fe3cf7

View File

@@ -1,7 +1,7 @@
export type CommonMedia = { export type CommonMedia = {
title: string; title: string;
releaseYear: number; releaseYear: number;
imdbId: string; imdbId?: string;
tmdbId: string; tmdbId: string;
}; };