mirror of
https://github.com/Suwayomi/Tachidesk.git
synced 2025-12-24 05:22:38 +01:00
23 lines
348 B
TypeScript
23 lines
348 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 {
|
|
title: string
|
|
thumbnailUrl: string
|
|
}
|