10 lines
155 B
TypeScript
10 lines
155 B
TypeScript
export type LogoData = {
|
|
channel: string
|
|
feed: string | null
|
|
tags: string[]
|
|
width: number
|
|
height: number
|
|
format: string | null
|
|
url: string
|
|
}
|