mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-13 02:49:58 +00:00
Enable strict mode for extension build
This commit is contained in:
@@ -6,12 +6,12 @@ import { MetadataType } from "../enums";
|
||||
|
||||
|
||||
export default class MovieMediaMetadata {
|
||||
public images: Image[] = undefined;
|
||||
public images: (Image[] | undefined) = undefined;
|
||||
public metadataType: number = MetadataType.MOVIE;
|
||||
public releaseDate: string = undefined;
|
||||
public releaseYear: number = undefined;
|
||||
public studio: string = undefined;
|
||||
public subtitle: string = undefined;
|
||||
public title: string = undefined;
|
||||
public releaseDate: (string | undefined) = undefined;
|
||||
public releaseYear: (number | undefined) = undefined;
|
||||
public studio: (string | undefined) = undefined;
|
||||
public subtitle: (string | undefined) = undefined;
|
||||
public title: (string | undefined) = undefined;
|
||||
public type: number = MetadataType.MOVIE;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user