mirror of
https://codeberg.org/SafeTwitch/safetwitch-backend.git
synced 2024-12-22 13:13:00 -05:00
9 lines
No EOL
250 B
TypeScript
9 lines
No EOL
250 B
TypeScript
import { StreamData, StreamerData } from "./Streamer"
|
|
import { Category } from "./Category"
|
|
|
|
export interface SearchResult {
|
|
channels: StreamerData[]
|
|
categories: Category[]
|
|
relatedChannels: StreamData[]
|
|
channelsWithTag: StreamData[]
|
|
} |