mirror of
https://github.com/tachiyomiorg/tachiyomi-extensions-inspector.git
synced 2024-12-27 09:11:48 +01:00
34 lines
528 B
TypeScript
34 lines
528 B
TypeScript
interface IExtension {
|
|
name: string
|
|
lang: string
|
|
versionName: string
|
|
iconUrl: string
|
|
installed: boolean
|
|
apkName: string
|
|
}
|
|
|
|
interface ISource {
|
|
id: string
|
|
name: string
|
|
lang: string
|
|
iconUrl: string
|
|
supportsLatest: boolean
|
|
history: any
|
|
}
|
|
|
|
interface IManga {
|
|
id: number
|
|
title: string
|
|
thumbnailUrl: string
|
|
}
|
|
|
|
interface IChapter {
|
|
id: number
|
|
url: string
|
|
name: string
|
|
date_upload: number
|
|
chapter_number: number
|
|
scanlator: String
|
|
mangaId: number
|
|
}
|