tachiyomi-extensions-inspector/webUI/react/src/typings.d.ts

34 lines
528 B
TypeScript
Raw Normal View History

2020-12-24 16:50:50 +01:00
interface IExtension {
name: string
lang: string
versionName: string
iconUrl: string
2020-12-25 00:38:08 +01:00
installed: boolean
apkName: string
2020-12-24 16:50:50 +01:00
}
2020-12-25 04:06:34 +01:00
interface ISource {
2020-12-25 19:44:54 +01:00
id: string
2020-12-25 04:06:34 +01:00
name: string
lang: string
iconUrl: string
supportsLatest: boolean
2020-12-25 19:44:54 +01:00
history: any
2020-12-25 04:06:34 +01:00
}
2020-12-25 17:42:22 +01:00
interface IManga {
2021-01-19 17:50:28 +01:00
id: number
2020-12-25 19:44:54 +01:00
title: string
thumbnailUrl: string
2020-12-25 17:42:22 +01:00
}
2021-01-19 18:32:57 +01:00
interface IChapter {
2021-01-19 21:34:12 +01:00
id: number
2021-01-19 18:32:57 +01:00
url: string
name: string
2021-01-19 21:34:12 +01:00
date_upload: number
2021-01-19 18:32:57 +01:00
chapter_number: number
scanlator: String
2021-01-19 21:34:12 +01:00
mangaId: number
2021-01-19 18:32:57 +01:00
}