blob: b258ee36af9e709f4165e1a716385752f71801d3 (
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;
}
|