xpt-shared-types 1.0.2 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/index.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  // Export types
2
2
  export * from './types/country';
3
+ export * from './types/match';
4
+ export * from './types/tournament';
3
5
 
4
6
  // Export data
5
7
  export * from './data/countriesList';
@@ -0,0 +1,8 @@
1
+ export type MatchRound =
2
+ | 'Round 32'
3
+ | 'Round 16'
4
+ | 'Quarter Final'
5
+ | 'Semi-Final'
6
+ | 'Third Round'
7
+ | 'Finals'
8
+ | 'League';
@@ -0,0 +1,4 @@
1
+ export type TournamentType =
2
+ | 'Single Elimination'
3
+ | 'League'
4
+ | 'Double Elimination';