/** * A type for relative ranking */ interface RelativeRank { readonly player: number, readonly opponent: number } export { RelativeRank }