2 Commits

Author SHA1 Message Date
533eba775e Export tag interface 2025-06-15 19:11:15 +01:00
d13248277f Add Tag interface 2025-06-15 18:47:37 +01:00
3 changed files with 7 additions and 0 deletions

View File

@@ -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
View File

@@ -0,0 +1,4 @@
export interface Tag {
id?: number;
label: string;
}

View File

@@ -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[];
}