12 lines
241 B
TypeScript
12 lines
241 B
TypeScript
export type StreamData = {
|
|
channelId: string | null
|
|
feedId: string | null
|
|
title: string | null
|
|
url: string
|
|
referrer: string | null
|
|
userAgent: string | null
|
|
quality: string | null
|
|
label: string | null
|
|
directives: string[]
|
|
}
|