safetwitch/src/types/Search.ts

9 lines
244 B
TypeScript
Raw Normal View History

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