Add newer cast API additions and stub methods

This commit is contained in:
hensm
2021-02-16 04:03:56 +00:00
parent 5a9a32f5ab
commit e4e133ced5
22 changed files with 294 additions and 32 deletions

View File

@@ -0,0 +1,16 @@
"use strict";
import Image from "../../classes/Image";
import { MetadataType } from "../enums";
export default class AudiobookChapterMediaMetadata {
public bookTitle?: string;
public chapterNumber?: number;
public chapterTitle?: string;
public images?: Image[];
public subtitle?: string;
public title?: string;
public type = MetadataType.AUDIOBOOK_CHAPTER;
}