Files
MangaStatus/src/data/models/mangaupdates/MangaUpdatesSeriesGroups.ts
wea_ondara 7f28012520 added mangaupdates integration
cleanup db related code
cleanup ui
ui eye candy
2023-09-26 17:56:32 +02:00

25 lines
623 B
TypeScript

export type MangaUpdatesSeriesGroups = {
'group_list': {
'group_id': number,
'name': string,
'url': string,
'social': {
'site': string,
'facebook': string,
'twitter': string,
'irc': { 'channel': string, 'server': string },
'forum': string,
'discord': string
},
'active': true
}[],
'release_list': {
'id': number,
'title': string,
'volume': null,
'chapter': string,
'groups': { 'name': string, 'group_id': number }[],
'release_date': string,
'time_added': { 'timestamp': number, 'as_rfc3339': string, 'as_string': string }
}[]
}