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