Compare commits
18 Commits
c538aed244
...
99cfb97e3c
| Author | SHA1 | Date | |
|---|---|---|---|
| 99cfb97e3c | |||
| cff48d1e96 | |||
| dfa40e5397 | |||
| c08588d5e8 | |||
| 0b212e701b | |||
| 8dd92f32b7 | |||
| 8b8fe1402b | |||
| 2abc690bf9 | |||
| 5937c0cc5b | |||
| df4ab60ee0 | |||
| e1397d781c | |||
| 696c3577a7 | |||
| 209775f968 | |||
| c2db3785e1 | |||
| 67a999796a | |||
| 6e533bd945 | |||
| eb9f59cd31 | |||
| d13248277f |
@@ -18,6 +18,7 @@ export * from "./interfaces/tournament";
|
|||||||
export * from "./interfaces/guest-player-request";
|
export * from "./interfaces/guest-player-request";
|
||||||
export * from "./interfaces/single-tournament";
|
export * from "./interfaces/single-tournament";
|
||||||
export * from "./interfaces/team-championship";
|
export * from "./interfaces/team-championship";
|
||||||
|
export * from "./interfaces/tag";
|
||||||
export * from "./interfaces/role";
|
export * from "./interfaces/role";
|
||||||
export * from "./interfaces/confirmation-request";
|
export * from "./interfaces/confirmation-request";
|
||||||
export * from "./interfaces/confirmation-request/adult-confirmation-request";
|
export * from "./interfaces/confirmation-request/adult-confirmation-request";
|
||||||
|
|||||||
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 { Category } from "./category";
|
||||||
import { Club } from "./club";
|
import { Club } from "./club";
|
||||||
import { Official } from "./official";
|
import { Official } from "./official";
|
||||||
|
import { Tag } from "./tag";
|
||||||
import { TeamCategory } from "./team-category";
|
import { TeamCategory } from "./team-category";
|
||||||
|
|
||||||
export interface Tournament {
|
export interface Tournament {
|
||||||
@@ -24,4 +25,5 @@ export interface Tournament {
|
|||||||
drawUrl: string | null;
|
drawUrl: string | null;
|
||||||
notificationsSentAt?: Date | null;
|
notificationsSentAt?: Date | null;
|
||||||
'@type'?: string;
|
'@type'?: string;
|
||||||
|
tags?: Tag[];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user