Compare commits
2 Commits
871d41962c
...
feature/ta
| Author | SHA1 | Date | |
|---|---|---|---|
| 533eba775e | |||
| d13248277f |
@@ -18,3 +18,4 @@ export * from "./interfaces/tournament";
|
||||
export * from "./interfaces/guest-player-request";
|
||||
export * from "./interfaces/single-tournament";
|
||||
export * from "./interfaces/team-championship";
|
||||
export * from "./interfaces/tag";
|
||||
|
||||
4
src/interfaces/tag.ts
Normal file
4
src/interfaces/tag.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export interface Tag {
|
||||
id?: number;
|
||||
label: string;
|
||||
}
|
||||
@@ -1,6 +1,7 @@
|
||||
import { Category } from "./category";
|
||||
import { Club } from "./club";
|
||||
import { Official } from "./official";
|
||||
import { Tag } from "./tag";
|
||||
import { TeamCategory } from "./team-category";
|
||||
|
||||
export interface Tournament {
|
||||
@@ -24,4 +25,5 @@ export interface Tournament {
|
||||
drawUrl: string | null;
|
||||
notificationsSentAt?: Date | null;
|
||||
'@type'?: string;
|
||||
tags?: Tag[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user