aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/types/Search.tsx
blob: 766311aa8cdeba914d8fc8c4f662895cead7ffa9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { UserShort } from "./Profile";

export interface Search {
  players: UserShort[];
  maps: SearchMap[];
};

interface SearchMap {
  id: number;
  game: string;
  chapter: string;
  map: string;
};