update to v2

This commit is contained in:
2025-03-22 14:12:21 +01:00
parent 4092b128bc
commit 0daedc28dc
10 changed files with 88 additions and 51 deletions

View File

@@ -0,0 +1,8 @@
import { Category } from "./category";
import { Tournament } from "./tournament";
export interface SingleTournament extends Tournament {
categories: Array<Category>;
allowedWithoutPartner: boolean;
allowedSimilarEntries: boolean;
}