@hardbulls/wbsc-crawler
Version:
Tool to crawl events, leagues and statistics from WBSC based websites.
18 lines (17 loc) • 668 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.StandingType = void 0;
var StandingType;
(function (StandingType) {
StandingType["FINAL"] = "FINAL";
StandingType["GROUP_A"] = "GROUP_A";
StandingType["GROUP_B"] = "GROUP_B";
StandingType["GROUP_C"] = "GROUP_C";
StandingType["REGULAR"] = "REGULAR";
StandingType["PLAYOFF"] = "PLAYOFF";
StandingType["FINAL_TOURNAMENT"] = "FINAL_TOURNAMENT";
StandingType["UNKNOWN"] = "UNKNOWN";
StandingType["WEST"] = "WEST";
StandingType["EAST"] = "EAST";
StandingType["MIDDLE"] = "MIDDLE";
})(StandingType || (exports.StandingType = StandingType = {}));