mirror of
https://github.com/iptv-org/iptv
synced 2025-12-18 03:17:14 -05:00
Update scripts
This commit is contained in:
2
scripts/types/channel.d.ts
vendored
2
scripts/types/channel.d.ts
vendored
@@ -21,7 +21,6 @@ export type ChannelSerializedData = {
|
||||
closed?: string
|
||||
replacedBy?: string
|
||||
website?: string
|
||||
logo: string
|
||||
}
|
||||
|
||||
export type ChannelData = {
|
||||
@@ -39,7 +38,6 @@ export type ChannelData = {
|
||||
closed: string
|
||||
replaced_by: string
|
||||
website: string
|
||||
logo: string
|
||||
}
|
||||
|
||||
export type ChannelSearchableData = {
|
||||
|
||||
1
scripts/types/dataLoader.d.ts
vendored
1
scripts/types/dataLoader.d.ts
vendored
@@ -13,6 +13,7 @@ export type DataLoaderData = {
|
||||
blocklist: object | object[]
|
||||
channels: object | object[]
|
||||
feeds: object | object[]
|
||||
logos: object | object[]
|
||||
timezones: object | object[]
|
||||
guides: object | object[]
|
||||
streams: object | object[]
|
||||
|
||||
1
scripts/types/dataProcessor.d.ts
vendored
1
scripts/types/dataProcessor.d.ts
vendored
@@ -5,6 +5,7 @@ export type DataProcessorData = {
|
||||
subdivisionsGroupedByCountryCode: Dictionary
|
||||
feedsGroupedByChannelId: Dictionary
|
||||
guidesGroupedByStreamId: Dictionary
|
||||
logosGroupedByStreamId: Dictionary
|
||||
subdivisionsKeyByCode: Dictionary
|
||||
countriesKeyByCode: Dictionary
|
||||
languagesKeyByCode: Dictionary
|
||||
|
||||
9
scripts/types/logo.d.ts
vendored
Normal file
9
scripts/types/logo.d.ts
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
export type LogoData = {
|
||||
channel: string
|
||||
feed: string | null
|
||||
tags: string[]
|
||||
width: number
|
||||
height: number
|
||||
format: string | null
|
||||
url: string
|
||||
}
|
||||
1
scripts/types/stream.d.ts
vendored
1
scripts/types/stream.d.ts
vendored
@@ -7,4 +7,5 @@ export type StreamData = {
|
||||
user_agent: string | null
|
||||
quality: string | null
|
||||
label: string | null
|
||||
directives: string[]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user