mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-11 17:40:03 -04:00
Update scripts
This commit is contained in:
parent
89b87ad5c8
commit
bb2935878d
16 changed files with 248 additions and 231 deletions
|
@ -1,3 +1,4 @@
|
|||
export * from './issue'
|
||||
export * from './playlist'
|
||||
export * from './blocked'
|
||||
export * from './stream'
|
||||
|
|
16
scripts/models/issue.ts
Normal file
16
scripts/models/issue.ts
Normal file
|
@ -0,0 +1,16 @@
|
|||
import { Dictionary } from '../core'
|
||||
|
||||
type IssueProps = {
|
||||
number: number
|
||||
data: Dictionary
|
||||
}
|
||||
|
||||
export class Issue {
|
||||
number: number
|
||||
data: Dictionary
|
||||
|
||||
constructor({ number, data }: IssueProps) {
|
||||
this.number = number
|
||||
this.data = data
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue