UNPKG

sports-schedule-generator

Version:
8 lines (7 loc) 275 B
import Match from "./match"; export default class Gameday<T> { leftJoker?: Match<T> | undefined; rightJoker?: Match<T> | undefined; buckets: Match<T>[]; constructor(leftJoker?: Match<T> | undefined, rightJoker?: Match<T> | undefined, buckets?: Match<T>[]); }