9 lines
244 B
TypeScript
9 lines
244 B
TypeScript
![]() |
import type { StreamData, StreamerData } from "./"
|
||
|
import type { Category } from "./"
|
||
|
|
||
|
export interface SearchResult {
|
||
|
channels: StreamerData[]
|
||
|
categories: Category[]
|
||
|
relatedChannels: StreamData[]
|
||
|
channelsWithTag: StreamData[]
|
||
|
}
|