22 lines
403 B
TypeScript
22 lines
403 B
TypeScript
import { LanguageItem } from '../modules/module.langsData';
|
|
|
|
export type FunimationMediaDownload = {
|
|
id: string,
|
|
title: string,
|
|
showTitle: string,
|
|
image: string
|
|
}
|
|
|
|
export type Subtitle = {
|
|
url: string,
|
|
lang: LanguageItem,
|
|
ext: string,
|
|
out?: string,
|
|
closedCaption?: boolean,
|
|
belongsToFile: {
|
|
hasFile: false,
|
|
} | {
|
|
hasFile: true,
|
|
file: string
|
|
}
|
|
}
|