Files
suwayomi-material-you-webui/webUI/react/src/typings.d.ts

24 lines
363 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 03:08:08 +03:30
installed: boolean
apkName: string
2020-12-24 16:50:50 +01:00
}
2020-12-25 06:36:34 +03:30
interface ISource {
2020-12-25 22:14:54 +03:30
id: string
2020-12-25 06:36:34 +03:30
name: string
lang: string
iconUrl: string
supportsLatest: boolean
2020-12-25 22:14:54 +03:30
history: any
2020-12-25 06:36:34 +03:30
}
2020-12-25 17:42:22 +01:00
interface IManga {
2021-01-19 20:20:28 +03:30
id: number
2020-12-25 22:14:54 +03:30
title: string
thumbnailUrl: string
2020-12-25 17:42:22 +01:00
}