mirror of
https://codeberg.org/SafeTwitch/safetwitch-backend.git
synced 2025-03-11 13:41:20 -05:00
Add type for search results
This commit is contained in:
parent
55ff3cb804
commit
99aaace55c
1 changed files with 9 additions and 0 deletions
9
types/scraping/Search.ts
Normal file
9
types/scraping/Search.ts
Normal file
|
@ -0,0 +1,9 @@
|
|||
import { StreamData, StreamerData } from "./Streamer"
|
||||
import { Category } from "./Category"
|
||||
|
||||
export interface SearchResult {
|
||||
channels: StreamerData[]
|
||||
categories: Category[]
|
||||
relatedChannels: StreamData[]
|
||||
channelsWithTag: StreamData[]
|
||||
}
|
Loading…
Add table
Reference in a new issue