safetwitch/src/types/Search.ts

9 lines
262 B
TypeScript
Raw Normal View History

2023-06-18 23:19:20 -04:00
import type { StreamData, StreamerData } from "./"
2023-06-19 23:18:10 -04:00
import type { CategoryPreview } from "./"
2023-06-18 23:19:20 -04:00
export interface SearchResult {
channels: StreamerData[]
2023-06-19 23:18:10 -04:00
categories: CategoryPreview[]
relatedChannels: StreamerData[]
channelsWithTag: StreamerData[]
2023-06-18 23:19:20 -04:00
}