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

17 lines
266 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 {
id: number
name: string
lang: string
iconUrl: string
supportsLatest: boolean
}