webemsim/webem-ui/src/lib/parameters.ts

23 lines
359 B
TypeScript

type Round = {
name: string;
matches: string[];
};
export const rounds: Round[] = [
{
name: 'Round of 16',
matches: ['W39', 'W37', 'W41', 'W42', 'W43', 'W44', 'W40', 'W38']
},
{
name: 'Quarter-Finals',
matches: ['W45', 'W46', 'W47', 'W48']
},
{
name: 'Semi-Finals',
matches: ['W49', 'W50']
},
{
name: 'Final',
matches: ['WIN']
}
];