Enable strict mode for extension build

This commit is contained in:
hensm
2020-01-23 00:58:33 +00:00
parent 3553912584
commit 7f84b90431
59 changed files with 526 additions and 331 deletions

View File

@@ -2,11 +2,11 @@
export default class Track {
public customData: any = null;
public language: string = null;
public name: string = null;
public subtype: string = null;
public trackContentId: string = null;
public trackContentType: string = null;
public language: (string | null) = null;
public name: (string | null) = null;
public subtype: (string | null) = null;
public trackContentId: (string | null) = null;
public trackContentType: (string | null) = null;
constructor (
public trackId: number