blob: d2188061490fe994fe8ade1c0cf63e039f629742 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import type { UserShort } from "@customTypes/Profile";
export interface Search {
players: UserShort[];
maps: SearchMap[];
};
interface SearchMap {
id: number;
game: string;
chapter: string;
map: string;
};
|