UNPKG

nttb-support

Version:

A repository containing javascript functions to support NTTB application development

12 lines (11 loc) 280 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Match = void 0; var Match = /** @class */ (function () { function Match(home, away) { this.home = home; this.away = away; } return Match; }()); exports.Match = Match;