@bluebottle_gg/league-broadcast-client 0.2.1 → 0.3.0
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/dist/index.d.ts +5293 -156
- package/dist/index.js +4925 -73
- package/dist/index.js.map +1 -1
- package/package.json +5 -4
package/dist/index.js
CHANGED
|
@@ -512,7 +512,7 @@ function isObject(value) {
|
|
|
512
512
|
return value !== null && typeof value === "object";
|
|
513
513
|
}
|
|
514
514
|
|
|
515
|
-
// types/shared/
|
|
515
|
+
// types/shared/gameState.ts
|
|
516
516
|
var GameState = /* @__PURE__ */ ((GameState2) => {
|
|
517
517
|
GameState2[GameState2["OutOfGame"] = 0] = "OutOfGame";
|
|
518
518
|
GameState2[GameState2["Loading"] = 1] = "Loading";
|
|
@@ -524,7 +524,7 @@ var GameState = /* @__PURE__ */ ((GameState2) => {
|
|
|
524
524
|
return GameState2;
|
|
525
525
|
})(GameState || {});
|
|
526
526
|
|
|
527
|
-
// types/ingame/
|
|
527
|
+
// types/ingame/ingameFrontendData.ts
|
|
528
528
|
var ingameFrontendData = class {
|
|
529
529
|
constructor() {
|
|
530
530
|
this.gameTime = 0;
|
|
@@ -537,7 +537,7 @@ var ingameFrontendData = class {
|
|
|
537
537
|
}
|
|
538
538
|
};
|
|
539
539
|
|
|
540
|
-
// types/pregame/
|
|
540
|
+
// types/pregame/champSelectStateData.ts
|
|
541
541
|
var champSelectStateData = class {
|
|
542
542
|
constructor() {
|
|
543
543
|
this.isActive = false;
|
|
@@ -1018,8 +1018,8 @@ var SeasonApi = class {
|
|
|
1018
1018
|
return this.client.get(`season/${seasonId}/teamswithmembers`);
|
|
1019
1019
|
}
|
|
1020
1020
|
/** `POST season` */
|
|
1021
|
-
async createOrUpdateSeason(
|
|
1022
|
-
return this.client.post("season",
|
|
1021
|
+
async createOrUpdateSeason(seasonData2) {
|
|
1022
|
+
return this.client.post("season", seasonData2);
|
|
1023
1023
|
}
|
|
1024
1024
|
/** `GET season/{seasonId}/icon` */
|
|
1025
1025
|
async getSeasonIcon(seasonId) {
|
|
@@ -1081,8 +1081,8 @@ var IngameApi = class {
|
|
|
1081
1081
|
return this.client.post(`ingame/showing/${socketid}`, data);
|
|
1082
1082
|
}
|
|
1083
1083
|
/** `GET ingame/stage/{stageSide}/{playerSlot}/networkId` */
|
|
1084
|
-
async getPlayerPUUIDInSlot(stageSide,
|
|
1085
|
-
return this.client.get(`ingame/stage/${stageSide}/${
|
|
1084
|
+
async getPlayerPUUIDInSlot(stageSide, playerSlot2) {
|
|
1085
|
+
return this.client.get(`ingame/stage/${stageSide}/${playerSlot2}/networkId`);
|
|
1086
1086
|
}
|
|
1087
1087
|
/** `GET ingame/stage/{stageSide}/ingameteamid` */
|
|
1088
1088
|
async getIngameTeamOnStageSide(stageSide) {
|
|
@@ -1092,6 +1092,58 @@ var IngameApi = class {
|
|
|
1092
1092
|
async getActiveOverlays() {
|
|
1093
1093
|
return this.client.get("ingame/state/activeOverlays");
|
|
1094
1094
|
}
|
|
1095
|
+
/** `GET ingame/damage/history` */
|
|
1096
|
+
async getDamageEventHistory() {
|
|
1097
|
+
return this.client.get("ingame/damage/history");
|
|
1098
|
+
}
|
|
1099
|
+
/** `POST ingame/damage/select/{eventId}` */
|
|
1100
|
+
async selectDamageEvent(eventId, displayMode) {
|
|
1101
|
+
return this.client.post(`ingame/damage/select/${eventId}${displayMode !== void 0 ? `?displayMode=${encodeURIComponent(String(displayMode))}` : ""}`);
|
|
1102
|
+
}
|
|
1103
|
+
/** `POST ingame/damage/deselect` */
|
|
1104
|
+
async deselectDamageEvent() {
|
|
1105
|
+
return this.client.post("ingame/damage/deselect");
|
|
1106
|
+
}
|
|
1107
|
+
/** `POST ingame/objective/select/{eventId}` */
|
|
1108
|
+
async selectObjectiveForDps(eventId) {
|
|
1109
|
+
return this.client.post(`ingame/objective/select/${eventId}`);
|
|
1110
|
+
}
|
|
1111
|
+
/** `POST ingame/objective/deselect` */
|
|
1112
|
+
async deselectObjectiveForDps() {
|
|
1113
|
+
return this.client.post("ingame/objective/deselect");
|
|
1114
|
+
}
|
|
1115
|
+
/** `POST ingame/teamfight/start` */
|
|
1116
|
+
async startTeamfightTracking() {
|
|
1117
|
+
return this.client.post("ingame/teamfight/start");
|
|
1118
|
+
}
|
|
1119
|
+
/** `POST ingame/teamfight/stop` */
|
|
1120
|
+
async stopTeamfightTracking() {
|
|
1121
|
+
return this.client.post("ingame/teamfight/stop");
|
|
1122
|
+
}
|
|
1123
|
+
/** `GET ingame/teamfight/active` */
|
|
1124
|
+
async getActiveTeamfight() {
|
|
1125
|
+
return this.client.get("ingame/teamfight/active");
|
|
1126
|
+
}
|
|
1127
|
+
/** `POST ingame/teamfight/select/{eventId}` */
|
|
1128
|
+
async selectTeamfightTimeline(eventId) {
|
|
1129
|
+
return this.client.post(`ingame/teamfight/select/${eventId}`);
|
|
1130
|
+
}
|
|
1131
|
+
/** `POST ingame/teamfight/deselect` */
|
|
1132
|
+
async deselectTeamfightTimeline() {
|
|
1133
|
+
return this.client.post("ingame/teamfight/deselect");
|
|
1134
|
+
}
|
|
1135
|
+
/** `POST ingame/damage/select/latest` */
|
|
1136
|
+
async selectLatestDamageEvent(displayMode) {
|
|
1137
|
+
return this.client.post(`ingame/damage/select/latest${displayMode !== void 0 ? `?displayMode=${encodeURIComponent(String(displayMode))}` : ""}`);
|
|
1138
|
+
}
|
|
1139
|
+
/** `POST ingame/objective/select/latest` */
|
|
1140
|
+
async selectLatestObjectiveEvent(displayMode, dps) {
|
|
1141
|
+
return this.client.post(`ingame/objective/select/latest${displayMode !== void 0 ? `?displayMode=${encodeURIComponent(String(displayMode))}` : ""}${dps !== void 0 ? `&dps=${encodeURIComponent(String(dps))}` : ""}`);
|
|
1142
|
+
}
|
|
1143
|
+
/** `POST ingame/teamfight/select/latest` */
|
|
1144
|
+
async selectLatestTeamfightTimeline() {
|
|
1145
|
+
return this.client.post("ingame/teamfight/select/latest");
|
|
1146
|
+
}
|
|
1095
1147
|
};
|
|
1096
1148
|
|
|
1097
1149
|
// src/api/RestApi.ts
|
|
@@ -1533,80 +1585,4880 @@ var LeagueBroadcastClient = class {
|
|
|
1533
1585
|
}
|
|
1534
1586
|
};
|
|
1535
1587
|
|
|
1536
|
-
// types/
|
|
1537
|
-
var
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
PickBanPhase2[PickBanPhase2["PICK2"] = 4] = "PICK2";
|
|
1543
|
-
PickBanPhase2[PickBanPhase2["END"] = 5] = "END";
|
|
1544
|
-
PickBanPhase2[PickBanPhase2["WAIT"] = 6] = "WAIT";
|
|
1545
|
-
return PickBanPhase2;
|
|
1546
|
-
})(PickBanPhase || {});
|
|
1588
|
+
// types/cloud/changeDetectionResponse.ts
|
|
1589
|
+
var changeDetectionResponse = class {
|
|
1590
|
+
constructor() {
|
|
1591
|
+
this.hasChanges = false;
|
|
1592
|
+
}
|
|
1593
|
+
};
|
|
1547
1594
|
|
|
1548
|
-
// types/
|
|
1549
|
-
var
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
}
|
|
1595
|
+
// types/cloud/cloudStyleSetDownloadResponse.ts
|
|
1596
|
+
var cloudStyleSetDownloadResponse = class {
|
|
1597
|
+
constructor() {
|
|
1598
|
+
this.downloadUrl = "";
|
|
1599
|
+
this.expiresAt = /* @__PURE__ */ new Date();
|
|
1600
|
+
this.metadata = {};
|
|
1601
|
+
}
|
|
1602
|
+
};
|
|
1556
1603
|
|
|
1557
|
-
// types/
|
|
1558
|
-
var
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1604
|
+
// types/cloud/cloudStyleSetMetadata.ts
|
|
1605
|
+
var cloudStyleSetMetadata = class {
|
|
1606
|
+
constructor() {
|
|
1607
|
+
this.id = "";
|
|
1608
|
+
this.name = "";
|
|
1609
|
+
this.phase = "";
|
|
1610
|
+
this.lastModified = /* @__PURE__ */ new Date();
|
|
1611
|
+
this.createdAt = /* @__PURE__ */ new Date();
|
|
1612
|
+
this.size = 0;
|
|
1613
|
+
this.variantCount = 0;
|
|
1614
|
+
this.assetCount = 0;
|
|
1615
|
+
this.isSyncedLocally = false;
|
|
1616
|
+
this.hasLocalChanges = false;
|
|
1617
|
+
}
|
|
1618
|
+
};
|
|
1564
1619
|
|
|
1565
|
-
// types/
|
|
1566
|
-
var
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1620
|
+
// types/cloud/cloudStyleSetsResponse.ts
|
|
1621
|
+
var cloudStyleSetsResponse = class {
|
|
1622
|
+
constructor() {
|
|
1623
|
+
this.styleSets = [];
|
|
1624
|
+
this.totalStorageUsed = 0;
|
|
1625
|
+
this.maxTotalStorage = 0;
|
|
1626
|
+
this.maxFileSize = 0;
|
|
1627
|
+
this.maxStyleSets = 0;
|
|
1628
|
+
}
|
|
1629
|
+
};
|
|
1572
1630
|
|
|
1573
|
-
// types/
|
|
1574
|
-
var
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1631
|
+
// types/cloud/cloudStyleSetUploadRequest.ts
|
|
1632
|
+
var cloudStyleSetUploadRequest = class {
|
|
1633
|
+
constructor() {
|
|
1634
|
+
this.name = "";
|
|
1635
|
+
this.phase = "";
|
|
1636
|
+
this.contentHash = "";
|
|
1637
|
+
this.size = 0;
|
|
1638
|
+
this.variantCount = 0;
|
|
1639
|
+
this.assetCount = 0;
|
|
1640
|
+
}
|
|
1641
|
+
};
|
|
1582
1642
|
|
|
1583
|
-
// types/
|
|
1584
|
-
var
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
}
|
|
1643
|
+
// types/cloud/cloudStyleSetUploadResponse.ts
|
|
1644
|
+
var cloudStyleSetUploadResponse = class {
|
|
1645
|
+
constructor() {
|
|
1646
|
+
this.id = "";
|
|
1647
|
+
this.uploadUrl = "";
|
|
1648
|
+
this.expiresAt = /* @__PURE__ */ new Date();
|
|
1649
|
+
}
|
|
1650
|
+
};
|
|
1590
1651
|
|
|
1591
|
-
//
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
);
|
|
1598
|
-
while (regularItems.length < 6) {
|
|
1599
|
-
regularItems.unshift(void 0);
|
|
1652
|
+
// types/cloud/cloudSyncConfig.ts
|
|
1653
|
+
var cloudSyncConfig = class {
|
|
1654
|
+
constructor() {
|
|
1655
|
+
this.syncedStyleSets = [];
|
|
1656
|
+
this.syncOnLaunch = false;
|
|
1657
|
+
this.autoUploadChanges = false;
|
|
1600
1658
|
}
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1659
|
+
};
|
|
1660
|
+
|
|
1661
|
+
// types/cloud/cloudSyncResult.ts
|
|
1662
|
+
var cloudSyncResult = class {
|
|
1663
|
+
constructor() {
|
|
1664
|
+
this.success = false;
|
|
1665
|
+
this.styleSetsSynced = 0;
|
|
1666
|
+
this.warnings = [];
|
|
1667
|
+
}
|
|
1668
|
+
};
|
|
1669
|
+
|
|
1670
|
+
// types/shared/style/set/setPhaseType.ts
|
|
1671
|
+
var SetPhaseType = /* @__PURE__ */ ((SetPhaseType2) => {
|
|
1672
|
+
SetPhaseType2[SetPhaseType2["Pre"] = 0] = "Pre";
|
|
1673
|
+
SetPhaseType2[SetPhaseType2["In"] = 1] = "In";
|
|
1674
|
+
SetPhaseType2[SetPhaseType2["Post"] = 2] = "Post";
|
|
1675
|
+
return SetPhaseType2;
|
|
1676
|
+
})(SetPhaseType || {});
|
|
1677
|
+
|
|
1678
|
+
// types/cloud/localSyncState.ts
|
|
1679
|
+
var localSyncState = class {
|
|
1680
|
+
constructor() {
|
|
1681
|
+
this.cloudId = "";
|
|
1682
|
+
this.localName = "";
|
|
1683
|
+
this.phase = 0 /* Pre */;
|
|
1684
|
+
this.autoSync = false;
|
|
1685
|
+
}
|
|
1686
|
+
};
|
|
1687
|
+
|
|
1688
|
+
// types/hotkey/casterModeConfigDto.ts
|
|
1689
|
+
var casterModeConfigDto = class {
|
|
1690
|
+
};
|
|
1691
|
+
|
|
1692
|
+
// types/hotkey/lane.ts
|
|
1693
|
+
var Lane = /* @__PURE__ */ ((Lane2) => {
|
|
1694
|
+
Lane2[Lane2["Top"] = 0] = "Top";
|
|
1695
|
+
Lane2[Lane2["Jungle"] = 1] = "Jungle";
|
|
1696
|
+
Lane2[Lane2["Mid"] = 2] = "Mid";
|
|
1697
|
+
Lane2[Lane2["ADC"] = 3] = "ADC";
|
|
1698
|
+
Lane2[Lane2["Support"] = 4] = "Support";
|
|
1699
|
+
return Lane2;
|
|
1700
|
+
})(Lane || {});
|
|
1701
|
+
|
|
1702
|
+
// types/hotkey/playerHotkeyDto.ts
|
|
1703
|
+
var playerHotkeyDto = class {
|
|
1704
|
+
};
|
|
1705
|
+
|
|
1706
|
+
// types/shared/style/set/tier.ts
|
|
1707
|
+
var Tier = /* @__PURE__ */ ((Tier2) => {
|
|
1708
|
+
Tier2[Tier2["Free"] = 0] = "Free";
|
|
1709
|
+
Tier2[Tier2["Basic"] = 1] = "Basic";
|
|
1710
|
+
Tier2[Tier2["Pro"] = 2] = "Pro";
|
|
1711
|
+
Tier2[Tier2["Enterprise"] = 3] = "Enterprise";
|
|
1712
|
+
return Tier2;
|
|
1713
|
+
})(Tier || {});
|
|
1714
|
+
|
|
1715
|
+
// types/hotkey/singleIngameHotkeyConfigDto.ts
|
|
1716
|
+
var singleIngameHotkeyConfigDto = class {
|
|
1717
|
+
constructor() {
|
|
1718
|
+
this.minTier = 0 /* Free */;
|
|
1719
|
+
this.overlayId = 0;
|
|
1720
|
+
this.name = "";
|
|
1721
|
+
this.overlayName = "";
|
|
1722
|
+
this.timePeriod = 0;
|
|
1723
|
+
this.backgroundColor = "";
|
|
1724
|
+
this.hasSettings = false;
|
|
1725
|
+
this.allowSinglePlayers = false;
|
|
1726
|
+
this.allowTimePeriod = false;
|
|
1727
|
+
this.overlaysToDisable = [];
|
|
1728
|
+
}
|
|
1729
|
+
};
|
|
1730
|
+
|
|
1731
|
+
// types/hotkey/singlePostgameHotkeyConfigDto.ts
|
|
1732
|
+
var singlePostgameHotkeyConfigDto = class {
|
|
1733
|
+
constructor() {
|
|
1734
|
+
this.minTier = 0 /* Free */;
|
|
1735
|
+
this.id = 0;
|
|
1736
|
+
this.name = "";
|
|
1737
|
+
this.componentName = "";
|
|
1738
|
+
this.backgroundColor = "";
|
|
1739
|
+
this.allowPlayers = false;
|
|
1740
|
+
this.allowTeams = false;
|
|
1741
|
+
this.allowStats = false;
|
|
1742
|
+
this.requiresCompletedGame = false;
|
|
1743
|
+
}
|
|
1744
|
+
};
|
|
1745
|
+
|
|
1746
|
+
// types/ingame/spellSlotIndex.ts
|
|
1747
|
+
var SpellSlotIndex = /* @__PURE__ */ ((SpellSlotIndex2) => {
|
|
1748
|
+
SpellSlotIndex2[SpellSlotIndex2["Q"] = 0] = "Q";
|
|
1749
|
+
SpellSlotIndex2[SpellSlotIndex2["W"] = 1] = "W";
|
|
1750
|
+
SpellSlotIndex2[SpellSlotIndex2["E"] = 2] = "E";
|
|
1751
|
+
SpellSlotIndex2[SpellSlotIndex2["R"] = 3] = "R";
|
|
1752
|
+
SpellSlotIndex2[SpellSlotIndex2["D"] = 4] = "D";
|
|
1753
|
+
SpellSlotIndex2[SpellSlotIndex2["F"] = 5] = "F";
|
|
1754
|
+
SpellSlotIndex2[SpellSlotIndex2["Item1"] = 6] = "Item1";
|
|
1755
|
+
SpellSlotIndex2[SpellSlotIndex2["Item2"] = 7] = "Item2";
|
|
1756
|
+
SpellSlotIndex2[SpellSlotIndex2["Item3"] = 8] = "Item3";
|
|
1757
|
+
SpellSlotIndex2[SpellSlotIndex2["Item4"] = 9] = "Item4";
|
|
1758
|
+
SpellSlotIndex2[SpellSlotIndex2["Item5"] = 10] = "Item5";
|
|
1759
|
+
SpellSlotIndex2[SpellSlotIndex2["Item6"] = 11] = "Item6";
|
|
1760
|
+
SpellSlotIndex2[SpellSlotIndex2["ItemTrinket"] = 12] = "ItemTrinket";
|
|
1761
|
+
SpellSlotIndex2[SpellSlotIndex2["Recall"] = 13] = "Recall";
|
|
1762
|
+
SpellSlotIndex2[SpellSlotIndex2["Quest"] = 14] = "Quest";
|
|
1763
|
+
SpellSlotIndex2[SpellSlotIndex2["Passive"] = 63] = "Passive";
|
|
1764
|
+
return SpellSlotIndex2;
|
|
1765
|
+
})(SpellSlotIndex || {});
|
|
1766
|
+
|
|
1767
|
+
// types/ingame/ingameAbilityInfo.ts
|
|
1768
|
+
var ingameAbilityInfo = class {
|
|
1769
|
+
constructor() {
|
|
1770
|
+
this.identifier = "";
|
|
1771
|
+
this.displayName = "";
|
|
1772
|
+
this.slot = 0 /* Q */;
|
|
1773
|
+
this.totalCooldown = 0;
|
|
1774
|
+
this.cooldown = 0;
|
|
1775
|
+
this.level = 0;
|
|
1776
|
+
this.charges = 0;
|
|
1777
|
+
}
|
|
1778
|
+
};
|
|
1779
|
+
|
|
1780
|
+
// types/ingame/ingameObjectivePowerPlay.ts
|
|
1781
|
+
var ingameObjectivePowerPlay = class {
|
|
1782
|
+
constructor() {
|
|
1783
|
+
this.gold = 0;
|
|
1784
|
+
this.kills = 0;
|
|
1785
|
+
this.deaths = 0;
|
|
1786
|
+
this.timeStart = 0;
|
|
1787
|
+
this.timeEnd = 0;
|
|
1788
|
+
}
|
|
1789
|
+
};
|
|
1790
|
+
|
|
1791
|
+
// types/ingame/ingameStateSettingsWrapper.ts
|
|
1792
|
+
var ingameStateSettingsWrapper = class {
|
|
1793
|
+
constructor() {
|
|
1794
|
+
this.show = false;
|
|
1795
|
+
this.overlaysToDisable = [];
|
|
1796
|
+
}
|
|
1797
|
+
};
|
|
1798
|
+
|
|
1799
|
+
// types/ingame/itemWithAsset.ts
|
|
1800
|
+
var itemWithAsset = class {
|
|
1801
|
+
constructor() {
|
|
1802
|
+
this.id = 0;
|
|
1803
|
+
this.slot = 0;
|
|
1804
|
+
this.displayName = "";
|
|
1805
|
+
this.assetUrl = "";
|
|
1806
|
+
this.cost = 0;
|
|
1807
|
+
this.count = 0;
|
|
1808
|
+
this.combineCost = 0;
|
|
1809
|
+
this.stacks = 0;
|
|
1810
|
+
}
|
|
1811
|
+
};
|
|
1812
|
+
|
|
1813
|
+
// types/ingame/announcer/announcementParameter.ts
|
|
1814
|
+
var announcementParameter = class {
|
|
1815
|
+
constructor() {
|
|
1816
|
+
this.team = 0;
|
|
1817
|
+
}
|
|
1818
|
+
};
|
|
1819
|
+
|
|
1820
|
+
// types/ingame/announcer/announcementType.ts
|
|
1821
|
+
var AnnouncementType = /* @__PURE__ */ ((AnnouncementType2) => {
|
|
1822
|
+
AnnouncementType2[AnnouncementType2["Unknown"] = 0] = "Unknown";
|
|
1823
|
+
AnnouncementType2[AnnouncementType2["Kill"] = 1] = "Kill";
|
|
1824
|
+
AnnouncementType2[AnnouncementType2["FirstBlood"] = 2] = "FirstBlood";
|
|
1825
|
+
AnnouncementType2[AnnouncementType2["FirstBrick"] = 3] = "FirstBrick";
|
|
1826
|
+
AnnouncementType2[AnnouncementType2["DoubleKill"] = 4] = "DoubleKill";
|
|
1827
|
+
AnnouncementType2[AnnouncementType2["TripleKill"] = 5] = "TripleKill";
|
|
1828
|
+
AnnouncementType2[AnnouncementType2["QuadraKill"] = 6] = "QuadraKill";
|
|
1829
|
+
AnnouncementType2[AnnouncementType2["PentaKill"] = 7] = "PentaKill";
|
|
1830
|
+
AnnouncementType2[AnnouncementType2["Ace"] = 8] = "Ace";
|
|
1831
|
+
AnnouncementType2[AnnouncementType2["BaronKill"] = 9] = "BaronKill";
|
|
1832
|
+
AnnouncementType2[AnnouncementType2["DragonKill"] = 10] = "DragonKill";
|
|
1833
|
+
AnnouncementType2[AnnouncementType2["HeraldKill"] = 11] = "HeraldKill";
|
|
1834
|
+
AnnouncementType2[AnnouncementType2["GrubKill"] = 12] = "GrubKill";
|
|
1835
|
+
AnnouncementType2[AnnouncementType2["InhibitorKill"] = 13] = "InhibitorKill";
|
|
1836
|
+
AnnouncementType2[AnnouncementType2["TowerKill"] = 14] = "TowerKill";
|
|
1837
|
+
AnnouncementType2[AnnouncementType2["BaronSpawn"] = 15] = "BaronSpawn";
|
|
1838
|
+
AnnouncementType2[AnnouncementType2["DragonSpawn"] = 16] = "DragonSpawn";
|
|
1839
|
+
AnnouncementType2[AnnouncementType2["HeraldSpawn"] = 17] = "HeraldSpawn";
|
|
1840
|
+
AnnouncementType2[AnnouncementType2["GrubSpawn"] = 18] = "GrubSpawn";
|
|
1841
|
+
AnnouncementType2[AnnouncementType2["InhibitorSpawn"] = 19] = "InhibitorSpawn";
|
|
1842
|
+
AnnouncementType2[AnnouncementType2["TowerSpawn"] = 20] = "TowerSpawn";
|
|
1843
|
+
AnnouncementType2[AnnouncementType2["BaronSteal"] = 21] = "BaronSteal";
|
|
1844
|
+
AnnouncementType2[AnnouncementType2["DragonSteal"] = 22] = "DragonSteal";
|
|
1845
|
+
AnnouncementType2[AnnouncementType2["HeraldSteal"] = 23] = "HeraldSteal";
|
|
1846
|
+
AnnouncementType2[AnnouncementType2["GrubSteal"] = 24] = "GrubSteal";
|
|
1847
|
+
AnnouncementType2[AnnouncementType2["Dragon_Rift_Air"] = 25] = "Dragon_Rift_Air";
|
|
1848
|
+
AnnouncementType2[AnnouncementType2["Dragon_Rift_Earth"] = 26] = "Dragon_Rift_Earth";
|
|
1849
|
+
AnnouncementType2[AnnouncementType2["Dragon_Rift_Fire"] = 27] = "Dragon_Rift_Fire";
|
|
1850
|
+
AnnouncementType2[AnnouncementType2["Dragon_Rift_Water"] = 28] = "Dragon_Rift_Water";
|
|
1851
|
+
AnnouncementType2[AnnouncementType2["Dragon_Rift_Hextech"] = 29] = "Dragon_Rift_Hextech";
|
|
1852
|
+
AnnouncementType2[AnnouncementType2["Dragon_Rift_Chemtech"] = 30] = "Dragon_Rift_Chemtech";
|
|
1853
|
+
AnnouncementType2[AnnouncementType2["GameStart"] = 31] = "GameStart";
|
|
1854
|
+
AnnouncementType2[AnnouncementType2["MinionSpawn"] = 32] = "MinionSpawn";
|
|
1855
|
+
return AnnouncementType2;
|
|
1856
|
+
})(AnnouncementType || {});
|
|
1857
|
+
|
|
1858
|
+
// types/ingame/announcer/announcerEvent.ts
|
|
1859
|
+
var announcerEvent = class {
|
|
1860
|
+
constructor() {
|
|
1861
|
+
this.type = 0 /* Unknown */;
|
|
1862
|
+
}
|
|
1863
|
+
};
|
|
1864
|
+
|
|
1865
|
+
// types/ingame/damageComposition/damageCompositionPlayer.ts
|
|
1866
|
+
var damageCompositionPlayer = class {
|
|
1867
|
+
constructor() {
|
|
1868
|
+
this.name = "";
|
|
1869
|
+
this.physical = 0;
|
|
1870
|
+
this.magic = 0;
|
|
1871
|
+
this.trueDamage = 0;
|
|
1872
|
+
this.total = 0;
|
|
1873
|
+
}
|
|
1874
|
+
};
|
|
1875
|
+
|
|
1876
|
+
// types/ingame/damageComposition/damageCompositionTeam.ts
|
|
1877
|
+
var damageCompositionTeam = class {
|
|
1878
|
+
constructor() {
|
|
1879
|
+
this.team = 0;
|
|
1880
|
+
this.physical = 0;
|
|
1881
|
+
this.magic = 0;
|
|
1882
|
+
this.trueDamage = 0;
|
|
1883
|
+
this.total = 0;
|
|
1884
|
+
this.players = [];
|
|
1885
|
+
}
|
|
1886
|
+
};
|
|
1887
|
+
|
|
1888
|
+
// types/ingame/damageComposition/ingameDamageCompositionData.ts
|
|
1889
|
+
var ingameDamageCompositionData = class {
|
|
1890
|
+
constructor() {
|
|
1891
|
+
this.teams = [];
|
|
1892
|
+
}
|
|
1893
|
+
};
|
|
1894
|
+
|
|
1895
|
+
// types/ingame/damageEvent/damageEventType.ts
|
|
1896
|
+
var DamageEventType = /* @__PURE__ */ ((DamageEventType2) => {
|
|
1897
|
+
DamageEventType2[DamageEventType2["PlayerDeath"] = 0] = "PlayerDeath";
|
|
1898
|
+
DamageEventType2[DamageEventType2["ObjectiveKill"] = 1] = "ObjectiveKill";
|
|
1899
|
+
DamageEventType2[DamageEventType2["TeamfightEnd"] = 2] = "TeamfightEnd";
|
|
1900
|
+
return DamageEventType2;
|
|
1901
|
+
})(DamageEventType || {});
|
|
1902
|
+
|
|
1903
|
+
// types/ingame/damageEvent/damageEventHistoryEntry.ts
|
|
1904
|
+
var damageEventHistoryEntry = class {
|
|
1905
|
+
constructor() {
|
|
1906
|
+
this.id = 0;
|
|
1907
|
+
this.eventType = 0 /* PlayerDeath */;
|
|
1908
|
+
this.gameTime = 0;
|
|
1909
|
+
this.victimName = "";
|
|
1910
|
+
this.killerName = "";
|
|
1911
|
+
this.totalDamage = 0;
|
|
1912
|
+
}
|
|
1913
|
+
};
|
|
1914
|
+
|
|
1915
|
+
// types/ingame/damageFlow/damageFlowEdge.ts
|
|
1916
|
+
var damageFlowEdge = class {
|
|
1917
|
+
constructor() {
|
|
1918
|
+
this.sourceName = "";
|
|
1919
|
+
this.targetName = "";
|
|
1920
|
+
this.totalDamage = 0;
|
|
1921
|
+
this.damageByType = {};
|
|
1922
|
+
}
|
|
1923
|
+
};
|
|
1924
|
+
|
|
1925
|
+
// types/ingame/damageFlow/damageFlowNode.ts
|
|
1926
|
+
var damageFlowNode = class {
|
|
1927
|
+
constructor() {
|
|
1928
|
+
this.name = "";
|
|
1929
|
+
this.totalDamageDealt = 0;
|
|
1930
|
+
this.totalDamageReceived = 0;
|
|
1931
|
+
}
|
|
1932
|
+
};
|
|
1933
|
+
|
|
1934
|
+
// types/ingame/damageFlow/ingameDamageFlowData.ts
|
|
1935
|
+
var ingameDamageFlowData = class {
|
|
1936
|
+
constructor() {
|
|
1937
|
+
this.nodes = [];
|
|
1938
|
+
this.edges = [];
|
|
1939
|
+
this.endTime = 0;
|
|
1940
|
+
}
|
|
1941
|
+
};
|
|
1942
|
+
|
|
1943
|
+
// types/ingame/damageGraph/damageGraphEntry.ts
|
|
1944
|
+
var damageGraphEntry = class {
|
|
1945
|
+
constructor() {
|
|
1946
|
+
this.name = "";
|
|
1947
|
+
this.damageByType = {};
|
|
1948
|
+
this.totalDamageDealt = 0;
|
|
1949
|
+
this.health = 0;
|
|
1950
|
+
this.maxHealth = 0;
|
|
1951
|
+
this.role = "";
|
|
1952
|
+
}
|
|
1953
|
+
};
|
|
1954
|
+
|
|
1955
|
+
// types/ingame/damageGraph/ingameDamageGraphData.ts
|
|
1956
|
+
var ingameDamageGraphData = class {
|
|
1957
|
+
constructor() {
|
|
1958
|
+
this.damageDealt = [];
|
|
1959
|
+
}
|
|
1960
|
+
};
|
|
1961
|
+
|
|
1962
|
+
// types/ingame/damageRecap/damageRecapEntry.ts
|
|
1963
|
+
var damageRecapEntry = class {
|
|
1964
|
+
constructor() {
|
|
1965
|
+
this.sourceName = "";
|
|
1966
|
+
this.spells = [];
|
|
1967
|
+
this.totalDamage = 0;
|
|
1968
|
+
this.damageByType = {};
|
|
1969
|
+
}
|
|
1970
|
+
};
|
|
1971
|
+
|
|
1972
|
+
// types/ingame/damageRecap/damageType.ts
|
|
1973
|
+
var DamageType = /* @__PURE__ */ ((DamageType2) => {
|
|
1974
|
+
DamageType2[DamageType2["Physical"] = 0] = "Physical";
|
|
1975
|
+
DamageType2[DamageType2["Magic"] = 1] = "Magic";
|
|
1976
|
+
DamageType2[DamageType2["True"] = 2] = "True";
|
|
1977
|
+
DamageType2[DamageType2["Invalid"] = 3] = "Invalid";
|
|
1978
|
+
return DamageType2;
|
|
1979
|
+
})(DamageType || {});
|
|
1980
|
+
|
|
1981
|
+
// types/ingame/damageRecap/damageRecapSpellEntry.ts
|
|
1982
|
+
var damageRecapSpellEntry = class {
|
|
1983
|
+
constructor() {
|
|
1984
|
+
this.damage = 0;
|
|
1985
|
+
this.damageType = 0 /* Physical */;
|
|
1986
|
+
}
|
|
1987
|
+
};
|
|
1988
|
+
|
|
1989
|
+
// types/ingame/damageRecap/damageRecapTimelineEntry.ts
|
|
1990
|
+
var damageRecapTimelineEntry = class {
|
|
1991
|
+
constructor() {
|
|
1992
|
+
this.gameTime = 0;
|
|
1993
|
+
this.sourceName = "";
|
|
1994
|
+
this.damage = 0;
|
|
1995
|
+
this.damageType = 0 /* Physical */;
|
|
1996
|
+
this.targetHealthBefore = 0;
|
|
1997
|
+
this.targetHealthAfter = 0;
|
|
1998
|
+
this.isSmite = false;
|
|
1999
|
+
}
|
|
2000
|
+
};
|
|
2001
|
+
|
|
2002
|
+
// types/ingame/damageRecap/objectiveRecapDisplayMode.ts
|
|
2003
|
+
var ObjectiveRecapDisplayMode = /* @__PURE__ */ ((ObjectiveRecapDisplayMode2) => {
|
|
2004
|
+
ObjectiveRecapDisplayMode2[ObjectiveRecapDisplayMode2["None"] = 0] = "None";
|
|
2005
|
+
ObjectiveRecapDisplayMode2[ObjectiveRecapDisplayMode2["ObjectiveInfo"] = 1] = "ObjectiveInfo";
|
|
2006
|
+
ObjectiveRecapDisplayMode2[ObjectiveRecapDisplayMode2["DamageRecap"] = 2] = "DamageRecap";
|
|
2007
|
+
ObjectiveRecapDisplayMode2[ObjectiveRecapDisplayMode2["All"] = 3] = "All";
|
|
2008
|
+
return ObjectiveRecapDisplayMode2;
|
|
2009
|
+
})(ObjectiveRecapDisplayMode || {});
|
|
2010
|
+
|
|
2011
|
+
// types/ingame/damageRecap/ingameDamageRecapData.ts
|
|
2012
|
+
var ingameDamageRecapData = class {
|
|
2013
|
+
constructor() {
|
|
2014
|
+
this.victimName = "";
|
|
2015
|
+
this.deathTime = 0;
|
|
2016
|
+
this.entries = [];
|
|
2017
|
+
this.totalDamageReceived = 0;
|
|
2018
|
+
this.displayMode = 0 /* None */;
|
|
2019
|
+
}
|
|
2020
|
+
};
|
|
2021
|
+
|
|
2022
|
+
// types/ingame/damageSplit/damageSplitMode.ts
|
|
2023
|
+
var DamageSplitMode = /* @__PURE__ */ ((DamageSplitMode2) => {
|
|
2024
|
+
DamageSplitMode2[DamageSplitMode2["Detail"] = 0] = "Detail";
|
|
2025
|
+
DamageSplitMode2[DamageSplitMode2["Flow"] = 1] = "Flow";
|
|
2026
|
+
return DamageSplitMode2;
|
|
2027
|
+
})(DamageSplitMode || {});
|
|
2028
|
+
|
|
2029
|
+
// types/ingame/damageSplit/damageSplitSpellEntry.ts
|
|
2030
|
+
var damageSplitSpellEntry = class {
|
|
2031
|
+
constructor() {
|
|
2032
|
+
this.damage = 0;
|
|
2033
|
+
this.damageType = 0 /* Physical */;
|
|
2034
|
+
}
|
|
2035
|
+
};
|
|
2036
|
+
|
|
2037
|
+
// types/ingame/damageSplit/damageSplitTargetEntry.ts
|
|
2038
|
+
var damageSplitTargetEntry = class {
|
|
2039
|
+
constructor() {
|
|
2040
|
+
this.targetName = "";
|
|
2041
|
+
this.spells = [];
|
|
2042
|
+
this.totalDamage = 0;
|
|
2043
|
+
this.damageByType = {};
|
|
2044
|
+
}
|
|
2045
|
+
};
|
|
2046
|
+
|
|
2047
|
+
// types/ingame/damageSplit/ingameDamageSplitData.ts
|
|
2048
|
+
var ingameDamageSplitData = class {
|
|
2049
|
+
constructor() {
|
|
2050
|
+
this.mode = 0 /* Detail */;
|
|
2051
|
+
this.sourceName = "";
|
|
2052
|
+
this.targets = [];
|
|
2053
|
+
this.totalDamageDealt = 0;
|
|
2054
|
+
this.damageByType = {};
|
|
2055
|
+
}
|
|
2056
|
+
};
|
|
2057
|
+
|
|
2058
|
+
// types/ingame/event/ingameObjectiveEvent.ts
|
|
2059
|
+
var ingameObjectiveEvent = class {
|
|
2060
|
+
constructor() {
|
|
2061
|
+
this.objective = "";
|
|
2062
|
+
this.eventType = "";
|
|
2063
|
+
this.team = 0;
|
|
2064
|
+
}
|
|
2065
|
+
};
|
|
2066
|
+
|
|
2067
|
+
// types/ingame/event/killFeedEvent.ts
|
|
2068
|
+
var killFeedEvent = class {
|
|
2069
|
+
constructor() {
|
|
2070
|
+
this.ingameTeamId = 0;
|
|
2071
|
+
this.victim = {};
|
|
2072
|
+
}
|
|
2073
|
+
};
|
|
2074
|
+
|
|
2075
|
+
// types/ingame/event/objectiveEventType.ts
|
|
2076
|
+
var ObjectiveEventType = /* @__PURE__ */ ((ObjectiveEventType2) => {
|
|
2077
|
+
ObjectiveEventType2[ObjectiveEventType2["Spawn"] = 0] = "Spawn";
|
|
2078
|
+
ObjectiveEventType2[ObjectiveEventType2["Kill"] = 1] = "Kill";
|
|
2079
|
+
return ObjectiveEventType2;
|
|
2080
|
+
})(ObjectiveEventType || {});
|
|
2081
|
+
|
|
2082
|
+
// types/ingame/event/playerUpdateEvent.ts
|
|
2083
|
+
var playerUpdateEvent = class {
|
|
2084
|
+
constructor() {
|
|
2085
|
+
this.playerNameAndTagLine = "";
|
|
2086
|
+
this.guid = "";
|
|
2087
|
+
this.kills = 0;
|
|
2088
|
+
this.deaths = 0;
|
|
2089
|
+
this.assists = 0;
|
|
2090
|
+
}
|
|
2091
|
+
};
|
|
2092
|
+
|
|
2093
|
+
// types/ingame/event/teamUpdateResults.ts
|
|
2094
|
+
var teamUpdateResults = class {
|
|
2095
|
+
constructor() {
|
|
2096
|
+
this.teamId = 0;
|
|
2097
|
+
this.platesTaken = 0;
|
|
2098
|
+
this.turretsTaken = 0;
|
|
2099
|
+
this.inhibitorsTaken = 0;
|
|
2100
|
+
}
|
|
2101
|
+
};
|
|
2102
|
+
|
|
2103
|
+
// types/ingame/event/transitionEvents.ts
|
|
2104
|
+
var transitionEvents = class {
|
|
2105
|
+
};
|
|
2106
|
+
|
|
2107
|
+
// types/ingame/event/turretPlatingFallEvent.ts
|
|
2108
|
+
var turretPlatingFallEvent = class {
|
|
2109
|
+
constructor() {
|
|
2110
|
+
this.team = {};
|
|
2111
|
+
this.platingGold = 0;
|
|
2112
|
+
this.platings = 0;
|
|
2113
|
+
}
|
|
2114
|
+
};
|
|
2115
|
+
|
|
2116
|
+
// types/ingame/goldEfficiency/goldEfficiencyEntry.ts
|
|
2117
|
+
var goldEfficiencyEntry = class {
|
|
2118
|
+
constructor() {
|
|
2119
|
+
this.name = "";
|
|
2120
|
+
this.team = 0;
|
|
2121
|
+
this.goldSpent = 0;
|
|
2122
|
+
this.damageDealt = 0;
|
|
2123
|
+
this.efficiency = 0;
|
|
2124
|
+
this.damageByType = {};
|
|
2125
|
+
this.role = "";
|
|
2126
|
+
}
|
|
2127
|
+
};
|
|
2128
|
+
|
|
2129
|
+
// types/ingame/goldEfficiency/ingameGoldEfficiencyData.ts
|
|
2130
|
+
var ingameGoldEfficiencyData = class {
|
|
2131
|
+
constructor() {
|
|
2132
|
+
this.players = [];
|
|
2133
|
+
}
|
|
2134
|
+
};
|
|
2135
|
+
|
|
2136
|
+
// types/ingame/graph/ingameGoldGraphData.ts
|
|
2137
|
+
var ingameGoldGraphData = class {
|
|
2138
|
+
constructor() {
|
|
2139
|
+
this.current = {};
|
|
2140
|
+
}
|
|
2141
|
+
};
|
|
2142
|
+
|
|
2143
|
+
// types/ingame/graph/singleGameGoldGraphData.ts
|
|
2144
|
+
var singleGameGoldGraphData = class {
|
|
2145
|
+
constructor() {
|
|
2146
|
+
this.goldAtTime = {};
|
|
2147
|
+
this.teams = {};
|
|
2148
|
+
}
|
|
2149
|
+
};
|
|
2150
|
+
|
|
2151
|
+
// types/ingame/objective/ingameObjectiveType.ts
|
|
2152
|
+
var IngameObjectiveType = /* @__PURE__ */ ((IngameObjectiveType2) => {
|
|
2153
|
+
IngameObjectiveType2[IngameObjectiveType2["GRUB"] = 0] = "GRUB";
|
|
2154
|
+
IngameObjectiveType2[IngameObjectiveType2["HERALD"] = 1] = "HERALD";
|
|
2155
|
+
IngameObjectiveType2[IngameObjectiveType2["BARON"] = 4] = "BARON";
|
|
2156
|
+
IngameObjectiveType2[IngameObjectiveType2["DRAGON_WATER"] = 5] = "DRAGON_WATER";
|
|
2157
|
+
IngameObjectiveType2[IngameObjectiveType2["DRAGON_AIR"] = 6] = "DRAGON_AIR";
|
|
2158
|
+
IngameObjectiveType2[IngameObjectiveType2["DRAGON_EARTH"] = 7] = "DRAGON_EARTH";
|
|
2159
|
+
IngameObjectiveType2[IngameObjectiveType2["DRAGON_FIRE"] = 8] = "DRAGON_FIRE";
|
|
2160
|
+
IngameObjectiveType2[IngameObjectiveType2["DRAGON_HEXTECH"] = 9] = "DRAGON_HEXTECH";
|
|
2161
|
+
IngameObjectiveType2[IngameObjectiveType2["DRAGON_CHEMTECH"] = 10] = "DRAGON_CHEMTECH";
|
|
2162
|
+
IngameObjectiveType2[IngameObjectiveType2["DRAGON_ELDER"] = 11] = "DRAGON_ELDER";
|
|
2163
|
+
IngameObjectiveType2[IngameObjectiveType2["INHIBITOR_L0"] = 12] = "INHIBITOR_L0";
|
|
2164
|
+
IngameObjectiveType2[IngameObjectiveType2["INHIBITOR_L1"] = 13] = "INHIBITOR_L1";
|
|
2165
|
+
IngameObjectiveType2[IngameObjectiveType2["INHIBITOR_L2"] = 14] = "INHIBITOR_L2";
|
|
2166
|
+
IngameObjectiveType2[IngameObjectiveType2["UNDEFINED"] = 32767] = "UNDEFINED";
|
|
2167
|
+
return IngameObjectiveType2;
|
|
2168
|
+
})(IngameObjectiveType || {});
|
|
2169
|
+
|
|
2170
|
+
// types/ingame/inhibitor/inhibitorRespawnData.ts
|
|
2171
|
+
var inhibitorRespawnData = class {
|
|
2172
|
+
constructor() {
|
|
2173
|
+
this.type = 0 /* GRUB */;
|
|
2174
|
+
this.timeDestroy = 0;
|
|
2175
|
+
}
|
|
2176
|
+
};
|
|
2177
|
+
|
|
2178
|
+
// types/ingame/inhibitor/teamInhibitorData.ts
|
|
2179
|
+
var teamInhibitorData = class {
|
|
2180
|
+
constructor() {
|
|
2181
|
+
this.team = "";
|
|
2182
|
+
this.teamid = 0;
|
|
2183
|
+
this.side = 0;
|
|
2184
|
+
this.inhibitors = {};
|
|
2185
|
+
}
|
|
2186
|
+
};
|
|
2187
|
+
|
|
2188
|
+
// types/ingame/killParticipation/ingameKillParticipationData.ts
|
|
2189
|
+
var ingameKillParticipationData = class {
|
|
2190
|
+
constructor() {
|
|
2191
|
+
this.players = [];
|
|
2192
|
+
this.links = [];
|
|
2193
|
+
}
|
|
2194
|
+
};
|
|
2195
|
+
|
|
2196
|
+
// types/ingame/killParticipation/killParticipationLink.ts
|
|
2197
|
+
var killParticipationLink = class {
|
|
2198
|
+
constructor() {
|
|
2199
|
+
this.killerName = "";
|
|
2200
|
+
this.assisterName = "";
|
|
2201
|
+
this.count = 0;
|
|
2202
|
+
}
|
|
2203
|
+
};
|
|
2204
|
+
|
|
2205
|
+
// types/ingame/killParticipation/killParticipationPlayer.ts
|
|
2206
|
+
var killParticipationPlayer = class {
|
|
2207
|
+
constructor() {
|
|
2208
|
+
this.name = "";
|
|
2209
|
+
this.team = 0;
|
|
2210
|
+
this.kills = 0;
|
|
2211
|
+
this.deaths = 0;
|
|
2212
|
+
this.assists = 0;
|
|
2213
|
+
}
|
|
2214
|
+
};
|
|
2215
|
+
|
|
2216
|
+
// types/ingame/objective/campLocation.ts
|
|
2217
|
+
var CampLocation = /* @__PURE__ */ ((CampLocation2) => {
|
|
2218
|
+
CampLocation2[CampLocation2["DragonPit"] = 2] = "DragonPit";
|
|
2219
|
+
CampLocation2[CampLocation2["BaronPit"] = 3] = "BaronPit";
|
|
2220
|
+
return CampLocation2;
|
|
2221
|
+
})(CampLocation || {});
|
|
2222
|
+
|
|
2223
|
+
// types/ingame/objectiveDps/ingameObjectiveDpsData.ts
|
|
2224
|
+
var ingameObjectiveDpsData = class {
|
|
2225
|
+
constructor() {
|
|
2226
|
+
this.objectiveName = "";
|
|
2227
|
+
this.startTime = 0;
|
|
2228
|
+
this.endTime = 0;
|
|
2229
|
+
this.maxHealth = 0;
|
|
2230
|
+
this.samples = [];
|
|
2231
|
+
}
|
|
2232
|
+
};
|
|
2233
|
+
|
|
2234
|
+
// types/ingame/objectiveDps/objectiveDpsSample.ts
|
|
2235
|
+
var objectiveDpsSample = class {
|
|
2236
|
+
constructor() {
|
|
2237
|
+
this.gameTime = 0;
|
|
2238
|
+
this.blueDamage = 0;
|
|
2239
|
+
this.redDamage = 0;
|
|
2240
|
+
this.remainingHealth = 0;
|
|
2241
|
+
}
|
|
2242
|
+
};
|
|
2243
|
+
|
|
2244
|
+
// types/ingame/rune/ingameRuneData.ts
|
|
2245
|
+
var ingameRuneData = class {
|
|
2246
|
+
constructor() {
|
|
2247
|
+
this.runes = [];
|
|
2248
|
+
}
|
|
2249
|
+
};
|
|
2250
|
+
|
|
2251
|
+
// types/ingame/rune/ingameSingleRuneData.ts
|
|
2252
|
+
var ingameSingleRuneData = class {
|
|
2253
|
+
constructor() {
|
|
2254
|
+
this.perks = [];
|
|
2255
|
+
this.name = "";
|
|
2256
|
+
this.team = 0;
|
|
2257
|
+
}
|
|
2258
|
+
};
|
|
2259
|
+
|
|
2260
|
+
// types/ingame/scoreboardBottom/ingameScoreboardBottomData.ts
|
|
2261
|
+
var ingameScoreboardBottomData = class {
|
|
2262
|
+
constructor() {
|
|
2263
|
+
this.gameTime = 0;
|
|
2264
|
+
this.teams = [];
|
|
2265
|
+
}
|
|
2266
|
+
};
|
|
2267
|
+
|
|
2268
|
+
// types/ingame/scoreboardBottom/ingameScoreboardBottomPlayerData.ts
|
|
2269
|
+
var ingameScoreboardBottomPlayerData = class {
|
|
2270
|
+
constructor() {
|
|
2271
|
+
this.name = "";
|
|
2272
|
+
this.kills = 0;
|
|
2273
|
+
this.deaths = 0;
|
|
2274
|
+
this.assists = 0;
|
|
2275
|
+
this.level = 0;
|
|
2276
|
+
this.gold = 0;
|
|
2277
|
+
this.totalGold = 0;
|
|
2278
|
+
this.creepScore = 0;
|
|
2279
|
+
this.visionScore = 0;
|
|
2280
|
+
this.shutdown = 0;
|
|
2281
|
+
}
|
|
2282
|
+
};
|
|
2283
|
+
|
|
2284
|
+
// types/ingame/scoreboardBottom/ingameScoreboardBottomTeamData.ts
|
|
2285
|
+
var ingameScoreboardBottomTeamData = class {
|
|
2286
|
+
constructor() {
|
|
2287
|
+
this.id = "";
|
|
2288
|
+
this.name = "";
|
|
2289
|
+
this.tag = "";
|
|
2290
|
+
this.players = [];
|
|
2291
|
+
}
|
|
2292
|
+
};
|
|
2293
|
+
|
|
2294
|
+
// types/ingame/skinDisplay/ingameSkinDisplayData.ts
|
|
2295
|
+
var ingameSkinDisplayData = class {
|
|
2296
|
+
constructor() {
|
|
2297
|
+
this.teams = [];
|
|
2298
|
+
}
|
|
2299
|
+
};
|
|
2300
|
+
|
|
2301
|
+
// types/ingame/skinDisplay/ingameSkinDisplayPlayerData.ts
|
|
2302
|
+
var ingameSkinDisplayPlayerData = class {
|
|
2303
|
+
constructor() {
|
|
2304
|
+
this.name = "";
|
|
2305
|
+
this.playerName = "";
|
|
2306
|
+
this.skinName = "";
|
|
2307
|
+
this.splashCenteredUrl = "";
|
|
2308
|
+
this.splashUrl = "";
|
|
2309
|
+
this.loadingUrl = "";
|
|
2310
|
+
this.tileUrl = "";
|
|
2311
|
+
}
|
|
2312
|
+
};
|
|
2313
|
+
|
|
2314
|
+
// types/ingame/skinDisplay/ingameSkinDisplayTeamData.ts
|
|
2315
|
+
var ingameSkinDisplayTeamData = class {
|
|
2316
|
+
constructor() {
|
|
2317
|
+
this.team = 0;
|
|
2318
|
+
this.players = [];
|
|
2319
|
+
}
|
|
2320
|
+
};
|
|
2321
|
+
|
|
2322
|
+
// types/ingame/smiteReaction/smiteReactionResult.ts
|
|
2323
|
+
var smiteReactionResult = class {
|
|
2324
|
+
constructor() {
|
|
2325
|
+
this.junglerName = "";
|
|
2326
|
+
this.junglerTeam = 0;
|
|
2327
|
+
this.smiteDamage = 0;
|
|
2328
|
+
this.thresholdReachedTime = 0;
|
|
2329
|
+
this.healthAtThreshold = 0;
|
|
2330
|
+
this.smiteLandedTime = 0;
|
|
2331
|
+
this.healthBeforeSmite = 0;
|
|
2332
|
+
this.reactionTimeSeconds = 0;
|
|
2333
|
+
this.wasKillingBlow = false;
|
|
2334
|
+
}
|
|
2335
|
+
};
|
|
2336
|
+
|
|
2337
|
+
// types/ingame/style/timerBarStyle.ts
|
|
2338
|
+
var timerBarStyle = class {
|
|
2339
|
+
constructor() {
|
|
2340
|
+
this.gap = "";
|
|
2341
|
+
this.height = "";
|
|
2342
|
+
this.width = "";
|
|
2343
|
+
this.border = {};
|
|
2344
|
+
}
|
|
2345
|
+
};
|
|
2346
|
+
|
|
2347
|
+
// types/ingame/style/announcer/announcerColors.ts
|
|
2348
|
+
var announcerColors = class {
|
|
2349
|
+
constructor() {
|
|
2350
|
+
this.source = "";
|
|
2351
|
+
this.target = "";
|
|
2352
|
+
}
|
|
2353
|
+
};
|
|
2354
|
+
|
|
2355
|
+
// types/ingame/style/announcer/announcerUniversalStyle.ts
|
|
2356
|
+
var announcerUniversalStyle = class {
|
|
2357
|
+
constructor() {
|
|
2358
|
+
this.textStyle = {};
|
|
2359
|
+
this.redTeamColors = {};
|
|
2360
|
+
this.blueTeamColors = {};
|
|
2361
|
+
this.defaultColors = {};
|
|
2362
|
+
this.useAdd = false;
|
|
2363
|
+
this.doubleEventAdVersion = 0;
|
|
2364
|
+
this.scale = 0;
|
|
2365
|
+
this.fileVersion = "1.0";
|
|
2366
|
+
}
|
|
2367
|
+
};
|
|
2368
|
+
|
|
2369
|
+
// types/ingame/style/bottomScoreboard/championImage.ts
|
|
2370
|
+
var championImage = class {
|
|
2371
|
+
constructor() {
|
|
2372
|
+
this.layoutStyle = {};
|
|
2373
|
+
this.borderColor = "";
|
|
2374
|
+
}
|
|
2375
|
+
};
|
|
2376
|
+
|
|
2377
|
+
// types/ingame/style/bottomScoreboard/creepScore.ts
|
|
2378
|
+
var creepScore = class {
|
|
2379
|
+
constructor() {
|
|
2380
|
+
this.textWithBorder = {};
|
|
2381
|
+
}
|
|
2382
|
+
};
|
|
2383
|
+
|
|
2384
|
+
// types/ingame/style/bottomScoreboard/fullPlayerScoreboardSlots.ts
|
|
2385
|
+
var fullPlayerScoreboardSlots = class {
|
|
2386
|
+
constructor() {
|
|
2387
|
+
this.playerScoreboardSlotLeft = {};
|
|
2388
|
+
this.playerScoreboardSlotRight = {};
|
|
2389
|
+
}
|
|
2390
|
+
};
|
|
2391
|
+
|
|
2392
|
+
// types/ingame/style/bottomScoreboard/itemSlot.ts
|
|
2393
|
+
var itemSlot = class {
|
|
2394
|
+
constructor() {
|
|
2395
|
+
this.cooldownBgColor = "";
|
|
2396
|
+
this.cooldownTimerColor = "";
|
|
2397
|
+
this.visionScoreText = {};
|
|
2398
|
+
this.visionScoreTextSmall = {};
|
|
2399
|
+
this.visionStackText = {};
|
|
2400
|
+
}
|
|
2401
|
+
};
|
|
2402
|
+
|
|
2403
|
+
// types/ingame/style/bottomScoreboard/playerKDA.ts
|
|
2404
|
+
var playerKDA = class {
|
|
2405
|
+
constructor() {
|
|
2406
|
+
this.shutdown = {};
|
|
2407
|
+
this.lowShutdown = {};
|
|
2408
|
+
this.kda = {};
|
|
2409
|
+
}
|
|
2410
|
+
};
|
|
2411
|
+
|
|
2412
|
+
// types/ingame/style/bottomScoreboard/playerScoreboard.ts
|
|
2413
|
+
var playerScoreboard = class {
|
|
2414
|
+
constructor() {
|
|
2415
|
+
this.fullPlayerScoreboardSlots = {};
|
|
2416
|
+
this.playerScoreboardGoldComparison = {};
|
|
2417
|
+
this.playerScoreboardContainer = {};
|
|
2418
|
+
this.fileVersion = "1.0";
|
|
2419
|
+
}
|
|
2420
|
+
};
|
|
2421
|
+
|
|
2422
|
+
// types/ingame/style/bottomScoreboard/playerScoreboardContainer.ts
|
|
2423
|
+
var playerScoreboardContainer = class {
|
|
2424
|
+
constructor() {
|
|
2425
|
+
this.layoutStyle = {};
|
|
2426
|
+
this.backgroundColor = "";
|
|
2427
|
+
}
|
|
2428
|
+
};
|
|
2429
|
+
|
|
2430
|
+
// types/ingame/style/bottomScoreboard/playerScoreboardGoldComparison.ts
|
|
2431
|
+
var playerScoreboardGoldComparison = class {
|
|
2432
|
+
constructor() {
|
|
2433
|
+
this.layoutStyle = {};
|
|
2434
|
+
this.textStyle = {};
|
|
2435
|
+
this.neutralLeadingColor = "";
|
|
2436
|
+
this.leftLeadingColor = "";
|
|
2437
|
+
this.rightLeadingColor = "";
|
|
2438
|
+
this.showTriangle = false;
|
|
2439
|
+
this.showBottomRect = false;
|
|
2440
|
+
this.recolorTriangleBasedOnLeadingTeam = false;
|
|
2441
|
+
this.recolorBottomRectBasedOnLeadingTeam = false;
|
|
2442
|
+
}
|
|
2443
|
+
};
|
|
2444
|
+
|
|
2445
|
+
// types/ingame/style/bottomScoreboard/playerScoreboardSlot.ts
|
|
2446
|
+
var playerScoreboardSlot = class {
|
|
2447
|
+
constructor() {
|
|
2448
|
+
this.scoreboardChampionSlot = {};
|
|
2449
|
+
this.itemSlot = {};
|
|
2450
|
+
this.roleQuest = {};
|
|
2451
|
+
this.playerKDA = {};
|
|
2452
|
+
}
|
|
2453
|
+
};
|
|
2454
|
+
|
|
2455
|
+
// types/ingame/style/bottomScoreboard/respawnTimer.ts
|
|
2456
|
+
var respawnTimer = class {
|
|
2457
|
+
constructor() {
|
|
2458
|
+
this.textWithBorder = {};
|
|
2459
|
+
}
|
|
2460
|
+
};
|
|
2461
|
+
|
|
2462
|
+
// types/ingame/style/bottomScoreboard/roleQuestSlot.ts
|
|
2463
|
+
var roleQuestSlot = class {
|
|
2464
|
+
constructor() {
|
|
2465
|
+
this.layout = {};
|
|
2466
|
+
}
|
|
2467
|
+
};
|
|
2468
|
+
|
|
2469
|
+
// types/ingame/style/bottomScoreboard/scoreboardChampionSlot.ts
|
|
2470
|
+
var scoreboardChampionSlot = class {
|
|
2471
|
+
constructor() {
|
|
2472
|
+
this.creepScore = {};
|
|
2473
|
+
this.respawnTimer = {};
|
|
2474
|
+
this.championImage = {};
|
|
2475
|
+
}
|
|
2476
|
+
};
|
|
2477
|
+
|
|
2478
|
+
// types/ingame/style/damageComposition/damageCompositionBarStyle.ts
|
|
2479
|
+
var damageCompositionBarStyle = class {
|
|
2480
|
+
constructor() {
|
|
2481
|
+
this.height = "";
|
|
2482
|
+
this.barBackground = "";
|
|
2483
|
+
this.borderRadius = "";
|
|
2484
|
+
}
|
|
2485
|
+
};
|
|
2486
|
+
|
|
2487
|
+
// types/ingame/style/damageComposition/damageCompositionColors.ts
|
|
2488
|
+
var damageCompositionColors = class {
|
|
2489
|
+
constructor() {
|
|
2490
|
+
this.physical = "";
|
|
2491
|
+
this.magic = "";
|
|
2492
|
+
this.true = "";
|
|
2493
|
+
}
|
|
2494
|
+
};
|
|
2495
|
+
|
|
2496
|
+
// types/ingame/style/damageComposition/damageCompositionDonutStyle.ts
|
|
2497
|
+
var damageCompositionDonutStyle = class {
|
|
2498
|
+
constructor() {
|
|
2499
|
+
this.size = "";
|
|
2500
|
+
this.showPercentages = false;
|
|
2501
|
+
this.centerValueText = {};
|
|
2502
|
+
this.centerLabelText = {};
|
|
2503
|
+
}
|
|
2504
|
+
};
|
|
2505
|
+
|
|
2506
|
+
// types/ingame/style/damageComposition/damageCompositionStyle.ts
|
|
2507
|
+
var damageCompositionStyle = class {
|
|
2508
|
+
constructor() {
|
|
2509
|
+
this.position = {};
|
|
2510
|
+
this.layout = {};
|
|
2511
|
+
this.background = "";
|
|
2512
|
+
this.headerText = {};
|
|
2513
|
+
this.headerBackground = "";
|
|
2514
|
+
this.headerTitle = "";
|
|
2515
|
+
this.colors = {};
|
|
2516
|
+
this.playerTotalText = {};
|
|
2517
|
+
this.legendText = {};
|
|
2518
|
+
this.playerBar = {};
|
|
2519
|
+
this.championIcon = {};
|
|
2520
|
+
this.border = {};
|
|
2521
|
+
this.donutChart = {};
|
|
2522
|
+
this.fileVersion = "1.0";
|
|
2523
|
+
}
|
|
2524
|
+
};
|
|
2525
|
+
|
|
2526
|
+
// types/ingame/style/damageFlow/damageFlow.ts
|
|
2527
|
+
var damageFlow = class {
|
|
2528
|
+
constructor() {
|
|
2529
|
+
this.position = {};
|
|
2530
|
+
this.layout = {};
|
|
2531
|
+
this.background = "";
|
|
2532
|
+
this.border = {};
|
|
2533
|
+
this.headerText = {};
|
|
2534
|
+
this.playerNameText = {};
|
|
2535
|
+
this.playerDamageText = {};
|
|
2536
|
+
this.blueNode = {};
|
|
2537
|
+
this.redNode = {};
|
|
2538
|
+
this.ribbon = {};
|
|
2539
|
+
this.nodeSize = "";
|
|
2540
|
+
this.nodeGap = "";
|
|
2541
|
+
this.cycleDurationMs = 0;
|
|
2542
|
+
this.fileVersion = "1.0";
|
|
2543
|
+
}
|
|
2544
|
+
};
|
|
2545
|
+
|
|
2546
|
+
// types/ingame/style/damageFlow/damageFlowNodeStyle.ts
|
|
2547
|
+
var damageFlowNodeStyle = class {
|
|
2548
|
+
constructor() {
|
|
2549
|
+
this.border = {};
|
|
2550
|
+
this.fallbackBackground = "";
|
|
2551
|
+
}
|
|
2552
|
+
};
|
|
2553
|
+
|
|
2554
|
+
// types/ingame/style/damageFlow/damageFlowRibbonStyle.ts
|
|
2555
|
+
var damageFlowRibbonStyle = class {
|
|
2556
|
+
constructor() {
|
|
2557
|
+
this.sourceOpacity = "";
|
|
2558
|
+
this.targetOpacity = "";
|
|
2559
|
+
this.strokeOpacity = "";
|
|
2560
|
+
}
|
|
2561
|
+
};
|
|
2562
|
+
|
|
2563
|
+
// types/ingame/style/damageGraph/colorByDamageType.ts
|
|
2564
|
+
var colorByDamageType = class {
|
|
2565
|
+
constructor() {
|
|
2566
|
+
this.magicFill = "";
|
|
2567
|
+
this.physicalFill = "";
|
|
2568
|
+
this.trueFill = "";
|
|
2569
|
+
}
|
|
2570
|
+
};
|
|
2571
|
+
|
|
2572
|
+
// types/ingame/style/damageGraph/damageBarStyle.ts
|
|
2573
|
+
var damageBarStyle = class {
|
|
2574
|
+
constructor() {
|
|
2575
|
+
this.minWidth = "";
|
|
2576
|
+
this.height = "";
|
|
2577
|
+
this.border = {};
|
|
2578
|
+
this.fill = "";
|
|
2579
|
+
this.useFillByDamageType = false;
|
|
2580
|
+
this.damageDealt = {};
|
|
2581
|
+
}
|
|
2582
|
+
};
|
|
2583
|
+
|
|
2584
|
+
// types/ingame/style/damageGraph/damageGraphSide.ts
|
|
2585
|
+
var damageGraphSide = class {
|
|
2586
|
+
constructor() {
|
|
2587
|
+
this.championIcons = {};
|
|
2588
|
+
this.bar = {};
|
|
2589
|
+
}
|
|
2590
|
+
};
|
|
2591
|
+
|
|
2592
|
+
// types/ingame/style/damageGraph/scoreboardDamageGraphStyle.ts
|
|
2593
|
+
var scoreboardDamageGraphStyle = class {
|
|
2594
|
+
constructor() {
|
|
2595
|
+
this.fileVersion = "1.0";
|
|
2596
|
+
this.position = {};
|
|
2597
|
+
this.layout = {};
|
|
2598
|
+
this.background = "";
|
|
2599
|
+
this.leftTeam = {};
|
|
2600
|
+
this.rightTeam = {};
|
|
2601
|
+
this.title = {};
|
|
2602
|
+
this.titleLayout = {};
|
|
2603
|
+
}
|
|
2604
|
+
};
|
|
2605
|
+
|
|
2606
|
+
// types/ingame/style/damageGraph/textWithContent.ts
|
|
2607
|
+
var textWithContent = class {
|
|
2608
|
+
constructor() {
|
|
2609
|
+
this.text = {};
|
|
2610
|
+
this.content = "";
|
|
2611
|
+
}
|
|
2612
|
+
};
|
|
2613
|
+
|
|
2614
|
+
// types/ingame/style/damageRecap/damageRecapDamageBarStyle.ts
|
|
2615
|
+
var damageRecapDamageBarStyle = class {
|
|
2616
|
+
constructor() {
|
|
2617
|
+
this.height = "";
|
|
2618
|
+
this.barBackground = "";
|
|
2619
|
+
this.borderRadius = "";
|
|
2620
|
+
}
|
|
2621
|
+
};
|
|
2622
|
+
|
|
2623
|
+
// types/ingame/style/damageRecap/damageRecapEntryStyle.ts
|
|
2624
|
+
var damageRecapEntryStyle = class {
|
|
2625
|
+
constructor() {
|
|
2626
|
+
this.nameText = {};
|
|
2627
|
+
this.damageText = {};
|
|
2628
|
+
this.icon = {};
|
|
2629
|
+
this.damageBar = {};
|
|
2630
|
+
this.gap = "";
|
|
2631
|
+
}
|
|
2632
|
+
};
|
|
2633
|
+
|
|
2634
|
+
// types/ingame/style/damageRecap/damageRecapStyle.ts
|
|
2635
|
+
var damageRecapStyle = class {
|
|
2636
|
+
constructor() {
|
|
2637
|
+
this.position = {};
|
|
2638
|
+
this.layout = {};
|
|
2639
|
+
this.background = "";
|
|
2640
|
+
this.accentColor = "";
|
|
2641
|
+
this.playerNameText = {};
|
|
2642
|
+
this.subtitleText = {};
|
|
2643
|
+
this.totalDamageText = {};
|
|
2644
|
+
this.entry = {};
|
|
2645
|
+
this.portraitImage = {};
|
|
2646
|
+
this.damageTypeColors = {};
|
|
2647
|
+
this.paginate = false;
|
|
2648
|
+
this.pageDurationInSeconds = 0;
|
|
2649
|
+
this.fileVersion = "1.0";
|
|
2650
|
+
}
|
|
2651
|
+
};
|
|
2652
|
+
|
|
2653
|
+
// types/ingame/style/damageSplit/damageSplitBarStyle.ts
|
|
2654
|
+
var damageSplitBarStyle = class {
|
|
2655
|
+
constructor() {
|
|
2656
|
+
this.height = "";
|
|
2657
|
+
this.barBackground = "";
|
|
2658
|
+
this.borderRadius = "";
|
|
2659
|
+
}
|
|
2660
|
+
};
|
|
2661
|
+
|
|
2662
|
+
// types/ingame/style/damageSplit/damageSplitEntryStyle.ts
|
|
2663
|
+
var damageSplitEntryStyle = class {
|
|
2664
|
+
constructor() {
|
|
2665
|
+
this.nameText = {};
|
|
2666
|
+
this.damageText = {};
|
|
2667
|
+
this.icon = {};
|
|
2668
|
+
this.damageBar = {};
|
|
2669
|
+
this.gap = "";
|
|
2670
|
+
}
|
|
2671
|
+
};
|
|
2672
|
+
|
|
2673
|
+
// types/ingame/style/damageSplit/damageSplitStyle.ts
|
|
2674
|
+
var damageSplitStyle = class {
|
|
2675
|
+
constructor() {
|
|
2676
|
+
this.position = {};
|
|
2677
|
+
this.layout = {};
|
|
2678
|
+
this.background = "";
|
|
2679
|
+
this.accentColor = "";
|
|
2680
|
+
this.playerNameText = {};
|
|
2681
|
+
this.subtitleText = {};
|
|
2682
|
+
this.totalDamageText = {};
|
|
2683
|
+
this.entry = {};
|
|
2684
|
+
this.portraitImage = {};
|
|
2685
|
+
this.damageTypeColors = {};
|
|
2686
|
+
this.paginate = false;
|
|
2687
|
+
this.pageDurationInSeconds = 0;
|
|
2688
|
+
this.fileVersion = "1.0";
|
|
2689
|
+
}
|
|
2690
|
+
};
|
|
2691
|
+
|
|
2692
|
+
// types/ingame/style/gameinfo/gameInfoRotation.ts
|
|
2693
|
+
var gameInfoRotation = class {
|
|
2694
|
+
constructor() {
|
|
2695
|
+
this.layout = {};
|
|
2696
|
+
this.color = "";
|
|
2697
|
+
this.secondsPerEntry = 0;
|
|
2698
|
+
this.position = {};
|
|
2699
|
+
this.transition = {};
|
|
2700
|
+
this.contentWithStyle = [];
|
|
2701
|
+
this.fileVersion = "1.0";
|
|
2702
|
+
}
|
|
2703
|
+
};
|
|
2704
|
+
|
|
2705
|
+
// types/ingame/style/gameinfo/textContentWithStyle.ts
|
|
2706
|
+
var textContentWithStyle = class {
|
|
2707
|
+
constructor() {
|
|
2708
|
+
this.style = {};
|
|
2709
|
+
this.content = "";
|
|
2710
|
+
}
|
|
2711
|
+
};
|
|
2712
|
+
|
|
2713
|
+
// types/ingame/style/goldEfficiency/goldEfficiencyHeaderStyle.ts
|
|
2714
|
+
var goldEfficiencyHeaderStyle = class {
|
|
2715
|
+
constructor() {
|
|
2716
|
+
this.background = "";
|
|
2717
|
+
this.titleText = {};
|
|
2718
|
+
this.subtitleText = {};
|
|
2719
|
+
this.height = "";
|
|
2720
|
+
this.titleContent = "";
|
|
2721
|
+
this.subtitleContent = "";
|
|
2722
|
+
}
|
|
2723
|
+
};
|
|
2724
|
+
|
|
2725
|
+
// types/ingame/style/goldEfficiency/goldEfficiencyHeatStyle.ts
|
|
2726
|
+
var goldEfficiencyHeatStyle = class {
|
|
2727
|
+
constructor() {
|
|
2728
|
+
this.lowColor = "";
|
|
2729
|
+
this.midColor = "";
|
|
2730
|
+
this.highColor = "";
|
|
2731
|
+
this.lowBreak = 0;
|
|
2732
|
+
this.highBreak = 0;
|
|
2733
|
+
}
|
|
2734
|
+
};
|
|
2735
|
+
|
|
2736
|
+
// types/ingame/style/goldEfficiency/goldEfficiencyPlayerRowStyle.ts
|
|
2737
|
+
var goldEfficiencyPlayerRowStyle = class {
|
|
2738
|
+
constructor() {
|
|
2739
|
+
this.damageText = {};
|
|
2740
|
+
this.goldText = {};
|
|
2741
|
+
this.infoText = {};
|
|
2742
|
+
this.scoreText = {};
|
|
2743
|
+
this.accentStripWidth = "";
|
|
2744
|
+
this.minHeight = "";
|
|
2745
|
+
this.damageLabel = "";
|
|
2746
|
+
this.goldLabel = "";
|
|
2747
|
+
}
|
|
2748
|
+
};
|
|
2749
|
+
|
|
2750
|
+
// types/ingame/style/goldEfficiency/goldEfficiencyStyle.ts
|
|
2751
|
+
var goldEfficiencyStyle = class {
|
|
2752
|
+
constructor() {
|
|
2753
|
+
this.position = {};
|
|
2754
|
+
this.layout = {};
|
|
2755
|
+
this.background = "";
|
|
2756
|
+
this.border = {};
|
|
2757
|
+
this.header = {};
|
|
2758
|
+
this.playerRow = {};
|
|
2759
|
+
this.championIcon = {};
|
|
2760
|
+
this.heat = {};
|
|
2761
|
+
this.fileVersion = "1.0";
|
|
2762
|
+
}
|
|
2763
|
+
};
|
|
2764
|
+
|
|
2765
|
+
// types/ingame/style/graph/championIamgeStyle.ts
|
|
2766
|
+
var championIamgeStyle = class {
|
|
2767
|
+
constructor() {
|
|
2768
|
+
this.layout = {};
|
|
2769
|
+
this.textStyle = {};
|
|
2770
|
+
this.background = "";
|
|
2771
|
+
}
|
|
2772
|
+
};
|
|
2773
|
+
|
|
2774
|
+
// types/ingame/style/graph/championImageStyle.ts
|
|
2775
|
+
var championImageStyle = class {
|
|
2776
|
+
constructor() {
|
|
2777
|
+
this.layout = {};
|
|
2778
|
+
}
|
|
2779
|
+
};
|
|
2780
|
+
|
|
2781
|
+
// types/ingame/style/graph/damageDealtStyle.ts
|
|
2782
|
+
var damageDealtStyle = class {
|
|
2783
|
+
constructor() {
|
|
2784
|
+
this.layout = {};
|
|
2785
|
+
this.textStyle = {};
|
|
2786
|
+
this.background = "";
|
|
2787
|
+
}
|
|
2788
|
+
};
|
|
2789
|
+
|
|
2790
|
+
// types/ingame/style/graph/healthBarStyle.ts
|
|
2791
|
+
var healthBarStyle = class {
|
|
2792
|
+
constructor() {
|
|
2793
|
+
this.layout = {};
|
|
2794
|
+
this.textStyle = {};
|
|
2795
|
+
this.background = "";
|
|
2796
|
+
this.foreground = "";
|
|
2797
|
+
}
|
|
2798
|
+
};
|
|
2799
|
+
|
|
2800
|
+
// types/ingame/style/graph/levelXpTrackerStyle.ts
|
|
2801
|
+
var levelXpTrackerStyle = class {
|
|
2802
|
+
constructor() {
|
|
2803
|
+
this.position = {};
|
|
2804
|
+
this.layout = {};
|
|
2805
|
+
this.textStyle = {};
|
|
2806
|
+
this.background = "";
|
|
2807
|
+
this.playerXpLevelStyle = {};
|
|
2808
|
+
this.fileVersion = "1.0";
|
|
2809
|
+
}
|
|
2810
|
+
};
|
|
2811
|
+
|
|
2812
|
+
// types/ingame/style/graph/numberContainerStyle.ts
|
|
2813
|
+
var numberContainerStyle = class {
|
|
2814
|
+
constructor() {
|
|
2815
|
+
this.layout = {};
|
|
2816
|
+
this.textStyle = {};
|
|
2817
|
+
}
|
|
2818
|
+
};
|
|
2819
|
+
|
|
2820
|
+
// types/ingame/style/graph/playerXpLevelStyle.ts
|
|
2821
|
+
var playerXpLevelStyle = class {
|
|
2822
|
+
constructor() {
|
|
2823
|
+
this.textStyle = {};
|
|
2824
|
+
this.bar = {};
|
|
2825
|
+
this.layout = {};
|
|
2826
|
+
this.championImage = {};
|
|
2827
|
+
this.numberContainer = {};
|
|
2828
|
+
}
|
|
2829
|
+
};
|
|
2830
|
+
|
|
2831
|
+
// types/ingame/style/graph/runeDisplayStyle.ts
|
|
2832
|
+
var runeDisplayStyle = class {
|
|
2833
|
+
constructor() {
|
|
2834
|
+
this.redTeamStyle = {};
|
|
2835
|
+
this.blueTeamStyle = {};
|
|
2836
|
+
this.position = {};
|
|
2837
|
+
this.layout = {};
|
|
2838
|
+
this.middleLayout = {};
|
|
2839
|
+
this.background = "";
|
|
2840
|
+
this.fileVersion = "1.0";
|
|
2841
|
+
}
|
|
2842
|
+
};
|
|
2843
|
+
|
|
2844
|
+
// types/ingame/style/graph/teamfightDamageEntryStyle.ts
|
|
2845
|
+
var teamfightDamageEntryStyle = class {
|
|
2846
|
+
constructor() {
|
|
2847
|
+
this.ultiStyle = {};
|
|
2848
|
+
this.healthBarStyle = {};
|
|
2849
|
+
this.championImageStyle = {};
|
|
2850
|
+
this.damageDealtStyle = {};
|
|
2851
|
+
}
|
|
2852
|
+
};
|
|
2853
|
+
|
|
2854
|
+
// types/ingame/style/graph/teamFightDamageStyle.ts
|
|
2855
|
+
var teamFightDamageStyle = class {
|
|
2856
|
+
constructor() {
|
|
2857
|
+
this.position = {};
|
|
2858
|
+
this.logo = {};
|
|
2859
|
+
this.background = "";
|
|
2860
|
+
this.layout = {};
|
|
2861
|
+
this.redTeam = {};
|
|
2862
|
+
this.blueTeam = {};
|
|
2863
|
+
this.itemGap = "";
|
|
2864
|
+
this.fileVersion = "1.0";
|
|
2865
|
+
}
|
|
2866
|
+
};
|
|
2867
|
+
|
|
2868
|
+
// types/ingame/style/graph/ultiAbilityStyle.ts
|
|
2869
|
+
var ultiAbilityStyle = class {
|
|
2870
|
+
constructor() {
|
|
2871
|
+
this.layout = {};
|
|
2872
|
+
this.textStyle = {};
|
|
2873
|
+
}
|
|
2874
|
+
};
|
|
2875
|
+
|
|
2876
|
+
// types/ingame/style/graph/goldGraph/goldGraph.ts
|
|
2877
|
+
var goldGraph = class {
|
|
2878
|
+
constructor() {
|
|
2879
|
+
this.position = {};
|
|
2880
|
+
this.yAxis = {};
|
|
2881
|
+
this.xAxis = {};
|
|
2882
|
+
this.title = {};
|
|
2883
|
+
this.background = "";
|
|
2884
|
+
this.gridLine = {};
|
|
2885
|
+
this.layout = {};
|
|
2886
|
+
this.leftLine = {};
|
|
2887
|
+
this.rightLine = {};
|
|
2888
|
+
this.fileVersion = "1.0";
|
|
2889
|
+
}
|
|
2890
|
+
};
|
|
2891
|
+
|
|
2892
|
+
// types/ingame/style/graph/goldGraph/gridLineStyle.ts
|
|
2893
|
+
var gridLineStyle = class {
|
|
2894
|
+
constructor() {
|
|
2895
|
+
this.lineWidth = "";
|
|
2896
|
+
this.lineColor = "";
|
|
2897
|
+
}
|
|
2898
|
+
};
|
|
2899
|
+
|
|
2900
|
+
// types/ingame/style/graph/goldGraph/lineStyle.ts
|
|
2901
|
+
var lineStyle = class {
|
|
2902
|
+
constructor() {
|
|
2903
|
+
this.lineColor = "";
|
|
2904
|
+
this.fillColor = "";
|
|
2905
|
+
}
|
|
2906
|
+
};
|
|
2907
|
+
|
|
2908
|
+
// types/ingame/style/inhibitor/inhibitorTimer.ts
|
|
2909
|
+
var inhibitorTimer = class {
|
|
2910
|
+
constructor() {
|
|
2911
|
+
this.fileVersion = "1.0";
|
|
2912
|
+
this.leftColor = "";
|
|
2913
|
+
this.rightColor = "";
|
|
2914
|
+
}
|
|
2915
|
+
};
|
|
2916
|
+
|
|
2917
|
+
// types/ingame/style/inhibitor/inhibitorTimerContainer.ts
|
|
2918
|
+
var inhibitorTimerContainer = class {
|
|
2919
|
+
constructor() {
|
|
2920
|
+
this.inhibitorTimerLayout = {};
|
|
2921
|
+
this.background = "";
|
|
2922
|
+
}
|
|
2923
|
+
};
|
|
2924
|
+
|
|
2925
|
+
// types/ingame/style/inhibitor/inhibitorTimerDual.ts
|
|
2926
|
+
var inhibitorTimerDual = class {
|
|
2927
|
+
constructor() {
|
|
2928
|
+
this.fileVersion = "1.0";
|
|
2929
|
+
this.inhibitorTimerDualContainer = {};
|
|
2930
|
+
this.inhibitorTimerTimerContainer = {};
|
|
2931
|
+
}
|
|
2932
|
+
};
|
|
2933
|
+
|
|
2934
|
+
// types/ingame/style/inhibitor/inhibitorTimerIconContainer.ts
|
|
2935
|
+
var inhibitorTimerIconContainer = class {
|
|
2936
|
+
constructor() {
|
|
2937
|
+
this.imageSize = "";
|
|
2938
|
+
this.titleText = "";
|
|
2939
|
+
this.layoutStyling = {};
|
|
2940
|
+
this.textStyling = {};
|
|
2941
|
+
this.showIcon = false;
|
|
2942
|
+
}
|
|
2943
|
+
};
|
|
2944
|
+
|
|
2945
|
+
// types/ingame/style/inhibitor/inhibitorTimerSingle.ts
|
|
2946
|
+
var inhibitorTimerSingle = class {
|
|
2947
|
+
constructor() {
|
|
2948
|
+
this.fileVersion = "1.0";
|
|
2949
|
+
this.inhibitorTimerSingleContainer = {};
|
|
2950
|
+
this.inhibitorTimerIconContainer = {};
|
|
2951
|
+
this.inhibitorTimerTimerContainer = {};
|
|
2952
|
+
}
|
|
2953
|
+
};
|
|
2954
|
+
|
|
2955
|
+
// types/ingame/style/inhibitor/inhibitorTimerTimerContainer.ts
|
|
2956
|
+
var inhibitorTimerTimerContainer = class {
|
|
2957
|
+
constructor() {
|
|
2958
|
+
this.inhibitorTimerBar = {};
|
|
2959
|
+
this.layoutStyling = {};
|
|
2960
|
+
this.textStyling = {};
|
|
2961
|
+
this.gap = "";
|
|
2962
|
+
this.showText = false;
|
|
2963
|
+
this.showLane = false;
|
|
2964
|
+
this.showBar = false;
|
|
2965
|
+
}
|
|
2966
|
+
};
|
|
2967
|
+
|
|
2968
|
+
// types/ingame/style/killfeed/killFeed.ts
|
|
2969
|
+
var killFeed = class {
|
|
2970
|
+
constructor() {
|
|
2971
|
+
this.fileVersion = "1.0";
|
|
2972
|
+
this.container = {};
|
|
2973
|
+
this.entry = {};
|
|
2974
|
+
}
|
|
2975
|
+
};
|
|
2976
|
+
|
|
2977
|
+
// types/shared/style/contentAlign.ts
|
|
2978
|
+
var ContentAlign = /* @__PURE__ */ ((ContentAlign2) => {
|
|
2979
|
+
ContentAlign2[ContentAlign2["TopLeft"] = 0] = "TopLeft";
|
|
2980
|
+
ContentAlign2[ContentAlign2["TopCenter"] = 1] = "TopCenter";
|
|
2981
|
+
ContentAlign2[ContentAlign2["TopRight"] = 2] = "TopRight";
|
|
2982
|
+
ContentAlign2[ContentAlign2["MiddleLeft"] = 3] = "MiddleLeft";
|
|
2983
|
+
ContentAlign2[ContentAlign2["MiddleCenter"] = 4] = "MiddleCenter";
|
|
2984
|
+
ContentAlign2[ContentAlign2["MiddleRight"] = 5] = "MiddleRight";
|
|
2985
|
+
ContentAlign2[ContentAlign2["BottomLeft"] = 6] = "BottomLeft";
|
|
2986
|
+
ContentAlign2[ContentAlign2["BottomCenter"] = 7] = "BottomCenter";
|
|
2987
|
+
ContentAlign2[ContentAlign2["BottomRight"] = 8] = "BottomRight";
|
|
2988
|
+
return ContentAlign2;
|
|
2989
|
+
})(ContentAlign || {});
|
|
2990
|
+
|
|
2991
|
+
// types/ingame/style/killfeed/killFeedAssistersStyle.ts
|
|
2992
|
+
var killFeedAssistersStyle = class {
|
|
2993
|
+
constructor() {
|
|
2994
|
+
this.gap = "";
|
|
2995
|
+
this.align = 0 /* TopLeft */;
|
|
2996
|
+
this.width = "";
|
|
2997
|
+
this.height = "";
|
|
2998
|
+
}
|
|
2999
|
+
};
|
|
3000
|
+
|
|
3001
|
+
// types/ingame/style/killfeed/killFeedContainerStyle.ts
|
|
3002
|
+
var killFeedContainerStyle = class {
|
|
3003
|
+
constructor() {
|
|
3004
|
+
this.itemAlign = 0 /* TopLeft */;
|
|
3005
|
+
this.position = {};
|
|
3006
|
+
this.gap = "";
|
|
3007
|
+
this.maxEventDurationInMs = 0;
|
|
3008
|
+
this.maxEventsToShow = 0;
|
|
3009
|
+
}
|
|
3010
|
+
};
|
|
3011
|
+
|
|
3012
|
+
// types/ingame/style/killfeed/killFeedEntryStyle.ts
|
|
3013
|
+
var killFeedEntryStyle = class {
|
|
3014
|
+
constructor() {
|
|
3015
|
+
this.fixedWidth = false;
|
|
3016
|
+
this.background = "";
|
|
3017
|
+
this.useSideColorBackground = false;
|
|
3018
|
+
this.useCustomBackground = false;
|
|
3019
|
+
this.killer = {};
|
|
3020
|
+
this.icon = {};
|
|
3021
|
+
this.victim = {};
|
|
3022
|
+
this.assisters = {};
|
|
3023
|
+
this.padding = "";
|
|
3024
|
+
this.margin = "";
|
|
3025
|
+
this.border = {};
|
|
3026
|
+
this.height = "";
|
|
3027
|
+
this.width = "";
|
|
3028
|
+
this.align = "";
|
|
3029
|
+
}
|
|
3030
|
+
};
|
|
3031
|
+
|
|
3032
|
+
// types/ingame/style/killfeed/killFeedIconStyle.ts
|
|
3033
|
+
var killFeedIconStyle = class {
|
|
3034
|
+
constructor() {
|
|
3035
|
+
this.width = "";
|
|
3036
|
+
this.height = "";
|
|
3037
|
+
}
|
|
3038
|
+
};
|
|
3039
|
+
|
|
3040
|
+
// types/ingame/style/killfeed/killFeedKillIconStyle.ts
|
|
3041
|
+
var killFeedKillIconStyle = class {
|
|
3042
|
+
constructor() {
|
|
3043
|
+
this.source = "";
|
|
3044
|
+
this.recolorToKillerTeamColor = false;
|
|
3045
|
+
this.width = "";
|
|
3046
|
+
this.height = "";
|
|
3047
|
+
}
|
|
3048
|
+
};
|
|
3049
|
+
|
|
3050
|
+
// types/ingame/style/killParticipation/killParticipationStyle.ts
|
|
3051
|
+
var killParticipationStyle = class {
|
|
3052
|
+
constructor() {
|
|
3053
|
+
this.position = {};
|
|
3054
|
+
this.layout = {};
|
|
3055
|
+
this.background = "";
|
|
3056
|
+
this.border = {};
|
|
3057
|
+
this.titleLabel = "";
|
|
3058
|
+
this.titlePadding = "";
|
|
3059
|
+
this.titleText = {};
|
|
3060
|
+
this.pctText = {};
|
|
3061
|
+
this.kdaText = {};
|
|
3062
|
+
this.dividerColor = "";
|
|
3063
|
+
this.dividerWidth = "";
|
|
3064
|
+
this.showBestDuo = false;
|
|
3065
|
+
this.bestDuoLabel = "";
|
|
3066
|
+
this.bestDuoText = {};
|
|
3067
|
+
this.blueTeamColor = "";
|
|
3068
|
+
this.redTeamColor = "";
|
|
3069
|
+
this.championIcon = {};
|
|
3070
|
+
this.championAspectRatio = "";
|
|
3071
|
+
this.fileVersion = "1.0";
|
|
3072
|
+
}
|
|
3073
|
+
};
|
|
3074
|
+
|
|
3075
|
+
// types/ingame/style/lframe/lFrameRotation.ts
|
|
3076
|
+
var lFrameRotation = class {
|
|
3077
|
+
constructor() {
|
|
3078
|
+
this.layout = {};
|
|
3079
|
+
this.color = "";
|
|
3080
|
+
this.secondsPerSponsor = 0;
|
|
3081
|
+
this.position = {};
|
|
3082
|
+
this.transition = {};
|
|
3083
|
+
this.fileVersion = "1.0";
|
|
3084
|
+
}
|
|
3085
|
+
};
|
|
3086
|
+
|
|
3087
|
+
// types/ingame/style/lframe/transitionType.ts
|
|
3088
|
+
var TransitionType = /* @__PURE__ */ ((TransitionType2) => {
|
|
3089
|
+
TransitionType2[TransitionType2["Cut"] = 0] = "Cut";
|
|
3090
|
+
TransitionType2[TransitionType2["Fade"] = 1] = "Fade";
|
|
3091
|
+
TransitionType2[TransitionType2["Slide"] = 2] = "Slide";
|
|
3092
|
+
TransitionType2[TransitionType2["Zoom"] = 3] = "Zoom";
|
|
3093
|
+
return TransitionType2;
|
|
3094
|
+
})(TransitionType || {});
|
|
3095
|
+
|
|
3096
|
+
// types/ingame/style/lframe/transitionStyle.ts
|
|
3097
|
+
var transitionStyle = class {
|
|
3098
|
+
constructor() {
|
|
3099
|
+
this.type = 0 /* Cut */;
|
|
3100
|
+
this.duration = 0;
|
|
3101
|
+
}
|
|
3102
|
+
};
|
|
3103
|
+
|
|
3104
|
+
// types/ingame/style/objectiveDamagePerTeam/objectiveDamagePerTeamStyle.ts
|
|
3105
|
+
var objectiveDamagePerTeamStyle = class {
|
|
3106
|
+
constructor() {
|
|
3107
|
+
this.position = {};
|
|
3108
|
+
this.layout = {};
|
|
3109
|
+
this.background = "";
|
|
3110
|
+
this.border = {};
|
|
3111
|
+
this.header = {};
|
|
3112
|
+
this.teamNumbers = {};
|
|
3113
|
+
this.progressBar = {};
|
|
3114
|
+
this.smiteStrip = {};
|
|
3115
|
+
this.blueTeamColor = "";
|
|
3116
|
+
this.redTeamColor = "";
|
|
3117
|
+
this.fileVersion = "1.0";
|
|
3118
|
+
}
|
|
3119
|
+
};
|
|
3120
|
+
|
|
3121
|
+
// types/ingame/style/objectiveDamagePerTeam/objectiveDpsBarStyle.ts
|
|
3122
|
+
var objectiveDpsBarStyle = class {
|
|
3123
|
+
constructor() {
|
|
3124
|
+
this.height = "";
|
|
3125
|
+
this.borderRadius = "";
|
|
3126
|
+
this.trackBackground = "";
|
|
3127
|
+
this.percentageText = {};
|
|
3128
|
+
}
|
|
3129
|
+
};
|
|
3130
|
+
|
|
3131
|
+
// types/ingame/style/objectiveDamagePerTeam/objectiveDpsHeaderStyle.ts
|
|
3132
|
+
var objectiveDpsHeaderStyle = class {
|
|
3133
|
+
constructor() {
|
|
3134
|
+
this.labelText = {};
|
|
3135
|
+
this.titleText = {};
|
|
3136
|
+
this.badgeText = {};
|
|
3137
|
+
this.securedBadgeColor = "";
|
|
3138
|
+
this.contestedBadgeColor = "";
|
|
3139
|
+
}
|
|
3140
|
+
};
|
|
3141
|
+
|
|
3142
|
+
// types/ingame/style/objectiveDamagePerTeam/objectiveDpsSmiteStrip.ts
|
|
3143
|
+
var objectiveDpsSmiteStrip = class {
|
|
3144
|
+
constructor() {
|
|
3145
|
+
this.background = "";
|
|
3146
|
+
this.border = {};
|
|
3147
|
+
this.portraitImage = {};
|
|
3148
|
+
this.nameText = {};
|
|
3149
|
+
this.smiteLabelText = {};
|
|
3150
|
+
this.statusText = {};
|
|
3151
|
+
this.reactionTimeText = {};
|
|
3152
|
+
this.reactionLabelText = {};
|
|
3153
|
+
}
|
|
3154
|
+
};
|
|
3155
|
+
|
|
3156
|
+
// types/ingame/style/objectiveDamagePerTeam/objectiveDpsTeamNumbersStyle.ts
|
|
3157
|
+
var objectiveDpsTeamNumbersStyle = class {
|
|
3158
|
+
constructor() {
|
|
3159
|
+
this.teamLabelText = {};
|
|
3160
|
+
this.damageValueText = {};
|
|
3161
|
+
this.vsText = {};
|
|
3162
|
+
}
|
|
3163
|
+
};
|
|
3164
|
+
|
|
3165
|
+
// types/ingame/style/objectiveRecap/objectiveRecapCardStyle.ts
|
|
3166
|
+
var objectiveRecapCardStyle = class {
|
|
3167
|
+
constructor() {
|
|
3168
|
+
this.background = "";
|
|
3169
|
+
this.border = {};
|
|
3170
|
+
this.damageValueText = {};
|
|
3171
|
+
this.damageTypeText = {};
|
|
3172
|
+
this.timeText = {};
|
|
3173
|
+
this.sourceIcon = {};
|
|
3174
|
+
this.spellIcon = {};
|
|
3175
|
+
this.smiteCardBackground = "";
|
|
3176
|
+
this.smiteCardBorder = {};
|
|
3177
|
+
}
|
|
3178
|
+
};
|
|
3179
|
+
|
|
3180
|
+
// types/ingame/style/objectiveRecap/objectiveRecapHeaderStyle.ts
|
|
3181
|
+
var objectiveRecapHeaderStyle = class {
|
|
3182
|
+
constructor() {
|
|
3183
|
+
this.background = "";
|
|
3184
|
+
this.border = {};
|
|
3185
|
+
this.titleText = {};
|
|
3186
|
+
this.subtitleText = {};
|
|
3187
|
+
this.portraitImage = {};
|
|
3188
|
+
}
|
|
3189
|
+
};
|
|
3190
|
+
|
|
3191
|
+
// types/ingame/style/objectiveRecap/objectiveRecapSmiteBarStyle.ts
|
|
3192
|
+
var objectiveRecapSmiteBarStyle = class {
|
|
3193
|
+
constructor() {
|
|
3194
|
+
this.background = "";
|
|
3195
|
+
this.border = {};
|
|
3196
|
+
this.labelText = {};
|
|
3197
|
+
this.statusText = {};
|
|
3198
|
+
this.reactionValueText = {};
|
|
3199
|
+
this.reactionLabelText = {};
|
|
3200
|
+
this.junglerIcon = {};
|
|
3201
|
+
this.reactionBadgeBorder = {};
|
|
3202
|
+
this.smiteAccentColor = "";
|
|
3203
|
+
}
|
|
3204
|
+
};
|
|
3205
|
+
|
|
3206
|
+
// types/ingame/style/objectiveRecap/objectiveRecapStyle.ts
|
|
3207
|
+
var objectiveRecapStyle = class {
|
|
3208
|
+
constructor() {
|
|
3209
|
+
this.position = {};
|
|
3210
|
+
this.layout = {};
|
|
3211
|
+
this.background = "";
|
|
3212
|
+
this.header = {};
|
|
3213
|
+
this.card = {};
|
|
3214
|
+
this.smiteBar = {};
|
|
3215
|
+
this.cardGap = "";
|
|
3216
|
+
this.fileVersion = "1.0";
|
|
3217
|
+
}
|
|
3218
|
+
};
|
|
3219
|
+
|
|
3220
|
+
// types/ingame/style/rune/runeDisplayPerkStyle.ts
|
|
3221
|
+
var runeDisplayPerkStyle = class {
|
|
3222
|
+
constructor() {
|
|
3223
|
+
this.background = "";
|
|
3224
|
+
this.padding = "";
|
|
3225
|
+
this.margin = "";
|
|
3226
|
+
this.border = {};
|
|
3227
|
+
this.height = "";
|
|
3228
|
+
this.width = "";
|
|
3229
|
+
this.align = "";
|
|
3230
|
+
}
|
|
3231
|
+
};
|
|
3232
|
+
|
|
3233
|
+
// types/ingame/style/rune/runeDisplayTeamStyle.ts
|
|
3234
|
+
var runeDisplayTeamStyle = class {
|
|
3235
|
+
constructor() {
|
|
3236
|
+
this.championImageLayout = {};
|
|
3237
|
+
this.firstPerkRowLayout = {};
|
|
3238
|
+
this.secondPerkRowLayout = {};
|
|
3239
|
+
this.thirdPerkRowLayout = {};
|
|
3240
|
+
this.topPerkStyle = {};
|
|
3241
|
+
}
|
|
3242
|
+
};
|
|
3243
|
+
|
|
3244
|
+
// types/ingame/style/skinDisplay/skinDisplayInfoStyle.ts
|
|
3245
|
+
var skinDisplayInfoStyle = class {
|
|
3246
|
+
constructor() {
|
|
3247
|
+
this.playerNameText = {};
|
|
3248
|
+
this.skinNameText = {};
|
|
3249
|
+
this.padding = "";
|
|
3250
|
+
}
|
|
3251
|
+
};
|
|
3252
|
+
|
|
3253
|
+
// types/ingame/style/skinDisplay/skinDisplayPoweredByStyle.ts
|
|
3254
|
+
var skinDisplayPoweredByStyle = class {
|
|
3255
|
+
constructor() {
|
|
3256
|
+
this.show = false;
|
|
3257
|
+
this.background = "";
|
|
3258
|
+
this.height = "";
|
|
3259
|
+
}
|
|
3260
|
+
};
|
|
3261
|
+
|
|
3262
|
+
// types/ingame/style/skinDisplay/skinDisplayRoleIconStyle.ts
|
|
3263
|
+
var skinDisplayRoleIconStyle = class {
|
|
3264
|
+
constructor() {
|
|
3265
|
+
this.baseSize = "";
|
|
3266
|
+
this.largerRoleScale = "";
|
|
3267
|
+
}
|
|
3268
|
+
};
|
|
3269
|
+
|
|
3270
|
+
// types/ingame/style/skinDisplay/skinDisplayStyle.ts
|
|
3271
|
+
var skinDisplayStyle = class {
|
|
3272
|
+
constructor() {
|
|
3273
|
+
this.position = {};
|
|
3274
|
+
this.layout = {};
|
|
3275
|
+
this.background = "";
|
|
3276
|
+
this.overlay = "";
|
|
3277
|
+
this.info = {};
|
|
3278
|
+
this.roleIcon = {};
|
|
3279
|
+
this.poweredBy = {};
|
|
3280
|
+
this.width = "";
|
|
3281
|
+
this.rotationIntervalMs = 0;
|
|
3282
|
+
this.fileVersion = "1.0";
|
|
3283
|
+
}
|
|
3284
|
+
};
|
|
3285
|
+
|
|
3286
|
+
// types/ingame/style/smiteReaction/smiteReactionBadgeStyle.ts
|
|
3287
|
+
var smiteReactionBadgeStyle = class {
|
|
3288
|
+
constructor() {
|
|
3289
|
+
this.badgeText = {};
|
|
3290
|
+
this.borderRadius = "";
|
|
3291
|
+
this.greatColor = "";
|
|
3292
|
+
this.averageColor = "";
|
|
3293
|
+
this.slowColor = "";
|
|
3294
|
+
this.earlyColor = "";
|
|
3295
|
+
this.securedColor = "";
|
|
3296
|
+
this.missedColor = "";
|
|
3297
|
+
}
|
|
3298
|
+
};
|
|
3299
|
+
|
|
3300
|
+
// types/ingame/style/smiteReaction/smiteReactionPoweredByStyle.ts
|
|
3301
|
+
var smiteReactionPoweredByStyle = class {
|
|
3302
|
+
constructor() {
|
|
3303
|
+
this.show = false;
|
|
3304
|
+
this.text = {};
|
|
3305
|
+
this.logoHeight = "";
|
|
3306
|
+
}
|
|
3307
|
+
};
|
|
3308
|
+
|
|
3309
|
+
// types/ingame/style/smiteReaction/smiteReactionRingStyle.ts
|
|
3310
|
+
var smiteReactionRingStyle = class {
|
|
3311
|
+
constructor() {
|
|
3312
|
+
this.size = "";
|
|
3313
|
+
this.thickness = "";
|
|
3314
|
+
this.trackColor = "";
|
|
3315
|
+
this.portraitImage = {};
|
|
3316
|
+
}
|
|
3317
|
+
};
|
|
3318
|
+
|
|
3319
|
+
// types/ingame/style/smiteReaction/smiteReactionStyle.ts
|
|
3320
|
+
var smiteReactionStyle = class {
|
|
3321
|
+
constructor() {
|
|
3322
|
+
this.position = {};
|
|
3323
|
+
this.layout = {};
|
|
3324
|
+
this.background = "";
|
|
3325
|
+
this.border = {};
|
|
3326
|
+
this.ring = {};
|
|
3327
|
+
this.texts = {};
|
|
3328
|
+
this.badges = {};
|
|
3329
|
+
this.poweredBy = {};
|
|
3330
|
+
this.durationInSeconds = 0;
|
|
3331
|
+
this.fileVersion = "1.0";
|
|
3332
|
+
}
|
|
3333
|
+
};
|
|
3334
|
+
|
|
3335
|
+
// types/ingame/style/smiteReaction/smiteReactionTextStyle.ts
|
|
3336
|
+
var smiteReactionTextStyle = class {
|
|
3337
|
+
constructor() {
|
|
3338
|
+
this.titleText = {};
|
|
3339
|
+
this.reactionTimeText = {};
|
|
3340
|
+
this.playerNameText = {};
|
|
3341
|
+
}
|
|
3342
|
+
};
|
|
3343
|
+
|
|
3344
|
+
// types/ingame/style/spawnTimer/spawnTimer.ts
|
|
3345
|
+
var spawnTimer = class {
|
|
3346
|
+
constructor() {
|
|
3347
|
+
this.mirror = false;
|
|
3348
|
+
this.spawnTimerIconContainerStyle = {};
|
|
3349
|
+
this.spawnTimerInfoContainerStyle = {};
|
|
3350
|
+
}
|
|
3351
|
+
};
|
|
3352
|
+
|
|
3353
|
+
// types/ingame/style/spawnTimer/spawnTimerIconContainerStyle.ts
|
|
3354
|
+
var spawnTimerIconContainerStyle = class {
|
|
3355
|
+
constructor() {
|
|
3356
|
+
this.icon = {};
|
|
3357
|
+
this.background = "";
|
|
3358
|
+
}
|
|
3359
|
+
};
|
|
3360
|
+
|
|
3361
|
+
// types/ingame/style/spawnTimer/spawnTimerInfoContainerStyle.ts
|
|
3362
|
+
var spawnTimerInfoContainerStyle = class {
|
|
3363
|
+
constructor() {
|
|
3364
|
+
this.infoContainerLayoutStyling = {};
|
|
3365
|
+
this.infoContainerTextStyling = {};
|
|
3366
|
+
this.background = "";
|
|
3367
|
+
}
|
|
3368
|
+
};
|
|
3369
|
+
|
|
3370
|
+
// types/ingame/style/spawnTimer/spawnTimerStyle.ts
|
|
3371
|
+
var spawnTimerStyle = class {
|
|
3372
|
+
constructor() {
|
|
3373
|
+
this.fileVersion = "1.0";
|
|
3374
|
+
}
|
|
3375
|
+
};
|
|
3376
|
+
|
|
3377
|
+
// types/ingame/style/tab/championStackStyle.ts
|
|
3378
|
+
var championStackStyle = class {
|
|
3379
|
+
constructor() {
|
|
3380
|
+
this.textStyling = {};
|
|
3381
|
+
this.textColorOutline = "";
|
|
3382
|
+
}
|
|
3383
|
+
};
|
|
3384
|
+
|
|
3385
|
+
// types/ingame/style/tab/championStatusStyle.ts
|
|
3386
|
+
var championStatusStyle = class {
|
|
3387
|
+
constructor() {
|
|
3388
|
+
this.resourceBar = {};
|
|
3389
|
+
this.healthBar = {};
|
|
3390
|
+
this.xpBar = {};
|
|
3391
|
+
}
|
|
3392
|
+
};
|
|
3393
|
+
|
|
3394
|
+
// types/ingame/style/tab/championTabContainerStyle.ts
|
|
3395
|
+
var championTabContainerStyle = class {
|
|
3396
|
+
constructor() {
|
|
3397
|
+
this.backgroundColor = "";
|
|
3398
|
+
this.gap = "";
|
|
3399
|
+
this.xDirection = "";
|
|
3400
|
+
this.yDirection = "";
|
|
3401
|
+
this.layoutStyling = {};
|
|
3402
|
+
this.shadowBaron = "";
|
|
3403
|
+
this.shadowDragon = "";
|
|
3404
|
+
}
|
|
3405
|
+
};
|
|
3406
|
+
|
|
3407
|
+
// types/ingame/style/tab/championTabNameStyle.ts
|
|
3408
|
+
var championTabNameStyle = class {
|
|
3409
|
+
constructor() {
|
|
3410
|
+
this.textStyling = {};
|
|
3411
|
+
this.nameTemplate = "";
|
|
3412
|
+
}
|
|
3413
|
+
};
|
|
3414
|
+
|
|
3415
|
+
// types/ingame/style/tab/championTabsStyle.ts
|
|
3416
|
+
var championTabsStyle = class {
|
|
3417
|
+
constructor() {
|
|
3418
|
+
this.championTabName = {};
|
|
3419
|
+
this.championStack = {};
|
|
3420
|
+
this.championUlti = {};
|
|
3421
|
+
this.championRespawnTimer = {};
|
|
3422
|
+
this.championLevel = {};
|
|
3423
|
+
this.championStatus = {};
|
|
3424
|
+
this.fullChampionTabContainer = {};
|
|
3425
|
+
}
|
|
3426
|
+
};
|
|
3427
|
+
|
|
3428
|
+
// types/ingame/style/tab/championUltimateStyle.ts
|
|
3429
|
+
var championUltimateStyle = class {
|
|
3430
|
+
constructor() {
|
|
3431
|
+
this.layoutStyling = {};
|
|
3432
|
+
}
|
|
3433
|
+
};
|
|
3434
|
+
|
|
3435
|
+
// types/ingame/style/tab/progressBarStyle.ts
|
|
3436
|
+
var progressBarStyle = class {
|
|
3437
|
+
constructor() {
|
|
3438
|
+
this.backgroundColor = "";
|
|
3439
|
+
this.fillColor = "";
|
|
3440
|
+
}
|
|
3441
|
+
};
|
|
3442
|
+
|
|
3443
|
+
// types/ingame/style/tab/tabLevelUpStyle.ts
|
|
3444
|
+
var tabLevelUpStyle = class {
|
|
3445
|
+
constructor() {
|
|
3446
|
+
this.background = "";
|
|
3447
|
+
this.text = {};
|
|
3448
|
+
this.animationDuration = 0;
|
|
3449
|
+
}
|
|
3450
|
+
};
|
|
3451
|
+
|
|
3452
|
+
// types/ingame/style/tab/tabsStyle.ts
|
|
3453
|
+
var tabsStyle = class {
|
|
3454
|
+
constructor() {
|
|
3455
|
+
this.championTabLeft = {};
|
|
3456
|
+
this.championTabRight = {};
|
|
3457
|
+
this.fileVersion = "1.0";
|
|
3458
|
+
}
|
|
3459
|
+
};
|
|
3460
|
+
|
|
3461
|
+
// types/ingame/style/teamfightTimeline/teamfightDeathIconStyle.ts
|
|
3462
|
+
var teamfightDeathIconStyle = class {
|
|
3463
|
+
constructor() {
|
|
3464
|
+
this.source = "";
|
|
3465
|
+
this.width = "";
|
|
3466
|
+
this.height = "";
|
|
3467
|
+
this.color = "";
|
|
3468
|
+
}
|
|
3469
|
+
};
|
|
3470
|
+
|
|
3471
|
+
// types/ingame/style/teamfightTimeline/teamfightTimelineStyle.ts
|
|
3472
|
+
var teamfightTimelineStyle = class {
|
|
3473
|
+
constructor() {
|
|
3474
|
+
this.position = {};
|
|
3475
|
+
this.layout = {};
|
|
3476
|
+
this.background = "";
|
|
3477
|
+
this.border = {};
|
|
3478
|
+
this.headerBackground = "";
|
|
3479
|
+
this.titleText = {};
|
|
3480
|
+
this.timeText = {};
|
|
3481
|
+
this.playerNameText = {};
|
|
3482
|
+
this.damageValueText = {};
|
|
3483
|
+
this.blueTeamColor = "";
|
|
3484
|
+
this.redTeamColor = "";
|
|
3485
|
+
this.championIcon = {};
|
|
3486
|
+
this.killFeedBackground = "";
|
|
3487
|
+
this.killFeedTimeText = {};
|
|
3488
|
+
this.chartGridColor = "";
|
|
3489
|
+
this.tabText = {};
|
|
3490
|
+
this.tabActiveBackground = "";
|
|
3491
|
+
this.tabInactiveBackground = "";
|
|
3492
|
+
this.overviewLabel = "";
|
|
3493
|
+
this.timelineLabel = "";
|
|
3494
|
+
this.deathIcon = {};
|
|
3495
|
+
this.chartLegendText = {};
|
|
3496
|
+
this.chartAxisText = {};
|
|
3497
|
+
this.chartStatsText = {};
|
|
3498
|
+
this.overviewDurationMs = 0;
|
|
3499
|
+
this.timelineDurationMs = 0;
|
|
3500
|
+
this.killsPerPage = 0;
|
|
3501
|
+
this.fileVersion = "1.0";
|
|
3502
|
+
}
|
|
3503
|
+
};
|
|
3504
|
+
|
|
3505
|
+
// types/ingame/style/topScoreboard/gameTimer.ts
|
|
3506
|
+
var gameTimer = class {
|
|
3507
|
+
constructor() {
|
|
3508
|
+
this.timerText = {};
|
|
3509
|
+
this.timerContainerLayout = {};
|
|
3510
|
+
this.background = "";
|
|
3511
|
+
}
|
|
3512
|
+
};
|
|
3513
|
+
|
|
3514
|
+
// types/ingame/style/topScoreboard/globalScoreboard.ts
|
|
3515
|
+
var globalScoreboard = class {
|
|
3516
|
+
constructor() {
|
|
3517
|
+
this.tournamentLogo = {};
|
|
3518
|
+
this.leftTeamSection = {};
|
|
3519
|
+
this.rightTeamSection = {};
|
|
3520
|
+
this.dragonPit = {};
|
|
3521
|
+
this.baronPit = {};
|
|
3522
|
+
this.gameTimer = {};
|
|
3523
|
+
this.fileVersion = "1.0";
|
|
3524
|
+
}
|
|
3525
|
+
};
|
|
3526
|
+
|
|
3527
|
+
// types/ingame/style/topScoreboard/globalScoreboardBooleanIndicator.ts
|
|
3528
|
+
var globalScoreboardBooleanIndicator = class {
|
|
3529
|
+
constructor() {
|
|
3530
|
+
this.layout = {};
|
|
3531
|
+
this.gap = "";
|
|
3532
|
+
this.activeColor = "";
|
|
3533
|
+
this.inactiveColor = "";
|
|
3534
|
+
this.backgroundColor = "";
|
|
3535
|
+
}
|
|
3536
|
+
};
|
|
3537
|
+
|
|
3538
|
+
// types/ingame/style/topScoreboard/globalScoreboardSection.ts
|
|
3539
|
+
var globalScoreboardSection = class {
|
|
3540
|
+
constructor() {
|
|
3541
|
+
this.teaminfo = {};
|
|
3542
|
+
this.teamIcon = {};
|
|
3543
|
+
this.teamScores = {};
|
|
3544
|
+
this.objectiveList = {};
|
|
3545
|
+
this.booleanIndicator = {};
|
|
3546
|
+
}
|
|
3547
|
+
};
|
|
3548
|
+
|
|
3549
|
+
// types/ingame/style/topScoreboard/goldAdvantage.ts
|
|
3550
|
+
var goldAdvantage = class {
|
|
3551
|
+
constructor() {
|
|
3552
|
+
this.text = {};
|
|
3553
|
+
this.layout = {};
|
|
3554
|
+
this.background = "";
|
|
3555
|
+
}
|
|
3556
|
+
};
|
|
3557
|
+
|
|
3558
|
+
// types/ingame/style/topScoreboard/objectiveList.ts
|
|
3559
|
+
var objectiveList = class {
|
|
3560
|
+
constructor() {
|
|
3561
|
+
this.objectiveListLayout = {};
|
|
3562
|
+
this.background = "";
|
|
3563
|
+
this.text = {};
|
|
3564
|
+
}
|
|
3565
|
+
};
|
|
3566
|
+
|
|
3567
|
+
// types/ingame/style/topScoreboard/objectiveTimer.ts
|
|
3568
|
+
var objectiveTimer = class {
|
|
3569
|
+
constructor() {
|
|
3570
|
+
this.timerText = {};
|
|
3571
|
+
this.goldText = {};
|
|
3572
|
+
this.timerContainerLayout = {};
|
|
3573
|
+
this.background = "";
|
|
3574
|
+
}
|
|
3575
|
+
};
|
|
3576
|
+
|
|
3577
|
+
// types/ingame/style/topScoreboard/teamIconStyle.ts
|
|
3578
|
+
var teamIconStyle = class {
|
|
3579
|
+
constructor() {
|
|
3580
|
+
this.layout = {};
|
|
3581
|
+
this.background = "";
|
|
3582
|
+
}
|
|
3583
|
+
};
|
|
3584
|
+
|
|
3585
|
+
// types/ingame/style/topScoreboard/teamInfo.ts
|
|
3586
|
+
var teamInfo = class {
|
|
3587
|
+
constructor() {
|
|
3588
|
+
this.textContainerLayout = {};
|
|
3589
|
+
this.teamName = {};
|
|
3590
|
+
this.teamInfoText = {};
|
|
3591
|
+
this.background = "";
|
|
3592
|
+
this.seasonScore = {};
|
|
3593
|
+
}
|
|
3594
|
+
};
|
|
3595
|
+
|
|
3596
|
+
// types/ingame/style/topScoreboard/teamScores.ts
|
|
3597
|
+
var teamScores = class {
|
|
3598
|
+
constructor() {
|
|
3599
|
+
this.goldText = {};
|
|
3600
|
+
this.goldAdvantage = {};
|
|
3601
|
+
this.killsText = {};
|
|
3602
|
+
this.towerText = {};
|
|
3603
|
+
this.layout = {};
|
|
3604
|
+
this.background = "";
|
|
3605
|
+
}
|
|
3606
|
+
};
|
|
3607
|
+
|
|
3608
|
+
// types/ingame/style/topScoreboard/tournamentLogo.ts
|
|
3609
|
+
var tournamentLogo = class {
|
|
3610
|
+
constructor() {
|
|
3611
|
+
this.layout = {};
|
|
3612
|
+
this.background = "";
|
|
3613
|
+
}
|
|
3614
|
+
};
|
|
3615
|
+
|
|
3616
|
+
// types/ingame/style/twitch/twitchChatVote/headline.ts
|
|
3617
|
+
var headline = class {
|
|
3618
|
+
constructor() {
|
|
3619
|
+
this.headlineText = {};
|
|
3620
|
+
this.text = "";
|
|
3621
|
+
}
|
|
3622
|
+
};
|
|
3623
|
+
|
|
3624
|
+
// types/ingame/style/twitch/twitchChatVote/optionBar.ts
|
|
3625
|
+
var optionBar = class {
|
|
3626
|
+
constructor() {
|
|
3627
|
+
this.layout = {};
|
|
3628
|
+
this.background = "";
|
|
3629
|
+
this.backgroundBar = "";
|
|
3630
|
+
}
|
|
3631
|
+
};
|
|
3632
|
+
|
|
3633
|
+
// types/ingame/style/twitch/twitchChatVote/optionTitel.ts
|
|
3634
|
+
var optionTitel = class {
|
|
3635
|
+
constructor() {
|
|
3636
|
+
this.layout = {};
|
|
3637
|
+
this.text = {};
|
|
3638
|
+
}
|
|
3639
|
+
};
|
|
3640
|
+
|
|
3641
|
+
// types/ingame/style/twitch/twitchChatVote/optionVotes.ts
|
|
3642
|
+
var optionVotes = class {
|
|
3643
|
+
constructor() {
|
|
3644
|
+
this.layout = {};
|
|
3645
|
+
this.text = {};
|
|
3646
|
+
}
|
|
3647
|
+
};
|
|
3648
|
+
|
|
3649
|
+
// types/ingame/style/twitch/twitchChatVote/totalBadge.ts
|
|
3650
|
+
var totalBadge = class {
|
|
3651
|
+
constructor() {
|
|
3652
|
+
this.layout = {};
|
|
3653
|
+
this.background = "";
|
|
3654
|
+
this.timerText = {};
|
|
3655
|
+
this.text = "";
|
|
3656
|
+
}
|
|
3657
|
+
};
|
|
3658
|
+
|
|
3659
|
+
// types/ingame/style/twitch/twitchChatVote/twitchChatVote.ts
|
|
3660
|
+
var twitchChatVote = class {
|
|
3661
|
+
constructor() {
|
|
3662
|
+
this.position = {};
|
|
3663
|
+
this.voteWrapper = {};
|
|
3664
|
+
this.headline = {};
|
|
3665
|
+
this.totalBadge = {};
|
|
3666
|
+
this.optionTitel = {};
|
|
3667
|
+
this.optionVotes = {};
|
|
3668
|
+
this.optionBar = {};
|
|
3669
|
+
this.fileVersion = "1.0";
|
|
3670
|
+
}
|
|
3671
|
+
};
|
|
3672
|
+
|
|
3673
|
+
// types/ingame/style/twitch/twitchChatVote/voteWrapper.ts
|
|
3674
|
+
var voteWrapper = class {
|
|
3675
|
+
constructor() {
|
|
3676
|
+
this.layout = {};
|
|
3677
|
+
this.background = "";
|
|
3678
|
+
}
|
|
3679
|
+
};
|
|
3680
|
+
|
|
3681
|
+
// types/ingame/style/twitch/twitchPoll/choiceBar.ts
|
|
3682
|
+
var choiceBar = class {
|
|
3683
|
+
constructor() {
|
|
3684
|
+
this.layout = {};
|
|
3685
|
+
this.background = "";
|
|
3686
|
+
this.backgroundBar = "";
|
|
3687
|
+
}
|
|
3688
|
+
};
|
|
3689
|
+
|
|
3690
|
+
// types/ingame/style/twitch/twitchPoll/choiceTitel.ts
|
|
3691
|
+
var choiceTitel = class {
|
|
3692
|
+
constructor() {
|
|
3693
|
+
this.layout = {};
|
|
3694
|
+
this.text = {};
|
|
3695
|
+
}
|
|
3696
|
+
};
|
|
3697
|
+
|
|
3698
|
+
// types/ingame/style/twitch/twitchPoll/choiceVotes.ts
|
|
3699
|
+
var choiceVotes = class {
|
|
3700
|
+
constructor() {
|
|
3701
|
+
this.layout = {};
|
|
3702
|
+
this.text = {};
|
|
3703
|
+
}
|
|
3704
|
+
};
|
|
3705
|
+
|
|
3706
|
+
// types/ingame/style/twitch/twitchPoll/pollWrapper.ts
|
|
3707
|
+
var pollWrapper = class {
|
|
3708
|
+
constructor() {
|
|
3709
|
+
this.layout = {};
|
|
3710
|
+
this.background = "";
|
|
3711
|
+
}
|
|
3712
|
+
};
|
|
3713
|
+
|
|
3714
|
+
// types/ingame/style/twitch/twitchPoll/timerBadgePoll.ts
|
|
3715
|
+
var timerBadgePoll = class {
|
|
3716
|
+
constructor() {
|
|
3717
|
+
this.layout = {};
|
|
3718
|
+
this.background = "";
|
|
3719
|
+
this.timerText = {};
|
|
3720
|
+
}
|
|
3721
|
+
};
|
|
3722
|
+
|
|
3723
|
+
// types/ingame/style/twitch/twitchPoll/totalVotes.ts
|
|
3724
|
+
var totalVotes = class {
|
|
3725
|
+
constructor() {
|
|
3726
|
+
this.layout = {};
|
|
3727
|
+
this.text = {};
|
|
3728
|
+
}
|
|
3729
|
+
};
|
|
3730
|
+
|
|
3731
|
+
// types/ingame/style/twitch/twitchPoll/twitchPoll.ts
|
|
3732
|
+
var twitchPoll = class {
|
|
3733
|
+
constructor() {
|
|
3734
|
+
this.position = {};
|
|
3735
|
+
this.pollWrapper = {};
|
|
3736
|
+
this.headline = {};
|
|
3737
|
+
this.timerBadge = {};
|
|
3738
|
+
this.choiceTitel = {};
|
|
3739
|
+
this.choiceVotes = {};
|
|
3740
|
+
this.choiceBar = {};
|
|
3741
|
+
this.totalVotes = {};
|
|
3742
|
+
this.fileVersion = "1.0";
|
|
3743
|
+
}
|
|
3744
|
+
};
|
|
3745
|
+
|
|
3746
|
+
// types/ingame/style/twitch/twitchPrediction/barStyle.ts
|
|
3747
|
+
var barStyle = class {
|
|
3748
|
+
constructor() {
|
|
3749
|
+
this.layout = {};
|
|
3750
|
+
this.background = "";
|
|
3751
|
+
this.text = {};
|
|
3752
|
+
}
|
|
3753
|
+
};
|
|
3754
|
+
|
|
3755
|
+
// types/ingame/style/twitch/twitchPrediction/predictionBar.ts
|
|
3756
|
+
var predictionBar = class {
|
|
3757
|
+
constructor() {
|
|
3758
|
+
this.layout = {};
|
|
3759
|
+
this.winner = {};
|
|
3760
|
+
this.loser = {};
|
|
3761
|
+
}
|
|
3762
|
+
};
|
|
3763
|
+
|
|
3764
|
+
// types/ingame/style/twitch/twitchPrediction/predictionPoints.ts
|
|
3765
|
+
var predictionPoints = class {
|
|
3766
|
+
constructor() {
|
|
3767
|
+
this.layout = {};
|
|
3768
|
+
this.winnerText = {};
|
|
3769
|
+
this.loserText = {};
|
|
3770
|
+
}
|
|
3771
|
+
};
|
|
3772
|
+
|
|
3773
|
+
// types/ingame/style/twitch/twitchPrediction/predictionWrapper.ts
|
|
3774
|
+
var predictionWrapper = class {
|
|
3775
|
+
constructor() {
|
|
3776
|
+
this.layout = {};
|
|
3777
|
+
this.background = "";
|
|
3778
|
+
}
|
|
3779
|
+
};
|
|
3780
|
+
|
|
3781
|
+
// types/ingame/style/twitch/twitchPrediction/timerBadgePrediction.ts
|
|
3782
|
+
var timerBadgePrediction = class {
|
|
3783
|
+
constructor() {
|
|
3784
|
+
this.layout = {};
|
|
3785
|
+
this.background = "";
|
|
3786
|
+
this.timerText = {};
|
|
3787
|
+
this.timerTextColorEnding = "";
|
|
3788
|
+
}
|
|
3789
|
+
};
|
|
3790
|
+
|
|
3791
|
+
// types/ingame/style/twitch/twitchPrediction/twitchPrediction.ts
|
|
3792
|
+
var twitchPrediction = class {
|
|
3793
|
+
constructor() {
|
|
3794
|
+
this.position = {};
|
|
3795
|
+
this.predictionWrapper = {};
|
|
3796
|
+
this.headline = {};
|
|
3797
|
+
this.timerBadge = {};
|
|
3798
|
+
this.predictionBar = {};
|
|
3799
|
+
this.predictionPoints = {};
|
|
3800
|
+
this.fileVersion = "1.0";
|
|
3801
|
+
}
|
|
3802
|
+
};
|
|
3803
|
+
|
|
3804
|
+
// types/ingame/tab/ingameExperienceData.ts
|
|
3805
|
+
var ingameExperienceData = class {
|
|
3806
|
+
constructor() {
|
|
3807
|
+
this.previousLevel = 0;
|
|
3808
|
+
this.current = 0;
|
|
3809
|
+
this.nextLevel = 0;
|
|
3810
|
+
}
|
|
3811
|
+
};
|
|
3812
|
+
|
|
3813
|
+
// types/ingame/tab/ingameHealthData.ts
|
|
3814
|
+
var ingameHealthData = class {
|
|
3815
|
+
constructor() {
|
|
3816
|
+
this.current = 0;
|
|
3817
|
+
this.max = 0;
|
|
3818
|
+
this.shield = 0;
|
|
3819
|
+
this.physicalShield = 0;
|
|
3820
|
+
this.magicalShield = 0;
|
|
3821
|
+
}
|
|
3822
|
+
};
|
|
3823
|
+
|
|
3824
|
+
// types/ingame/tab/resourceType.ts
|
|
3825
|
+
var ResourceType = /* @__PURE__ */ ((ResourceType2) => {
|
|
3826
|
+
ResourceType2[ResourceType2["mana"] = 0] = "mana";
|
|
3827
|
+
ResourceType2[ResourceType2["energy"] = 1] = "energy";
|
|
3828
|
+
ResourceType2[ResourceType2["none"] = 2] = "none";
|
|
3829
|
+
ResourceType2[ResourceType2["shield"] = 3] = "shield";
|
|
3830
|
+
ResourceType2[ResourceType2["battlefury"] = 4] = "battlefury";
|
|
3831
|
+
ResourceType2[ResourceType2["dragonfury"] = 5] = "dragonfury";
|
|
3832
|
+
ResourceType2[ResourceType2["rage"] = 6] = "rage";
|
|
3833
|
+
ResourceType2[ResourceType2["heat"] = 7] = "heat";
|
|
3834
|
+
ResourceType2[ResourceType2["gnarfury"] = 8] = "gnarfury";
|
|
3835
|
+
ResourceType2[ResourceType2["ferocity"] = 9] = "ferocity";
|
|
3836
|
+
ResourceType2[ResourceType2["bloodwell"] = 10] = "bloodwell";
|
|
3837
|
+
ResourceType2[ResourceType2["wind"] = 11] = "wind";
|
|
3838
|
+
ResourceType2[ResourceType2["ammo"] = 12] = "ammo";
|
|
3839
|
+
ResourceType2[ResourceType2["moonlight"] = 13] = "moonlight";
|
|
3840
|
+
ResourceType2[ResourceType2["other"] = 14] = "other";
|
|
3841
|
+
ResourceType2[ResourceType2["unknown"] = 255] = "unknown";
|
|
3842
|
+
return ResourceType2;
|
|
3843
|
+
})(ResourceType || {});
|
|
3844
|
+
|
|
3845
|
+
// types/ingame/tab/ingameResourceData.ts
|
|
3846
|
+
var ingameResourceData = class {
|
|
3847
|
+
constructor() {
|
|
3848
|
+
this.type = 0 /* mana */;
|
|
3849
|
+
this.current = 0;
|
|
3850
|
+
this.max = 0;
|
|
3851
|
+
}
|
|
3852
|
+
};
|
|
3853
|
+
|
|
3854
|
+
// types/ingame/tab/ingameSideInfoPageType.ts
|
|
3855
|
+
var IngameSideInfoPageType = /* @__PURE__ */ ((IngameSideInfoPageType2) => {
|
|
3856
|
+
IngameSideInfoPageType2[IngameSideInfoPageType2["Gold"] = 1] = "Gold";
|
|
3857
|
+
IngameSideInfoPageType2[IngameSideInfoPageType2["Experience"] = 2] = "Experience";
|
|
3858
|
+
IngameSideInfoPageType2[IngameSideInfoPageType2["CreepScore"] = 4] = "CreepScore";
|
|
3859
|
+
IngameSideInfoPageType2[IngameSideInfoPageType2["Damage"] = 8] = "Damage";
|
|
3860
|
+
IngameSideInfoPageType2[IngameSideInfoPageType2["None"] = 16] = "None";
|
|
3861
|
+
return IngameSideInfoPageType2;
|
|
3862
|
+
})(IngameSideInfoPageType || {});
|
|
3863
|
+
|
|
3864
|
+
// types/ingame/tab/ingameSideInfoPage.ts
|
|
3865
|
+
var ingameSideInfoPage = class {
|
|
3866
|
+
constructor() {
|
|
3867
|
+
this.type = 1 /* Gold */;
|
|
3868
|
+
this.title = "";
|
|
3869
|
+
this.players = [];
|
|
3870
|
+
this.display = {};
|
|
3871
|
+
}
|
|
3872
|
+
};
|
|
3873
|
+
|
|
3874
|
+
// types/ingame/tab/ingameSideInfoPageDisplayData.ts
|
|
3875
|
+
var ingameSideInfoPageDisplayData = class {
|
|
3876
|
+
constructor() {
|
|
3877
|
+
this.showHero = false;
|
|
3878
|
+
this.showMinValue = false;
|
|
3879
|
+
this.showCurValue = false;
|
|
3880
|
+
this.showMaxValue = false;
|
|
3881
|
+
this.showBar = false;
|
|
3882
|
+
}
|
|
3883
|
+
};
|
|
3884
|
+
|
|
3885
|
+
// types/ingame/tab/ingameSideInfoPageRow.ts
|
|
3886
|
+
var ingameSideInfoPageRow = class {
|
|
3887
|
+
};
|
|
3888
|
+
|
|
3889
|
+
// types/ingame/tab/tabPlayer.ts
|
|
3890
|
+
var tabPlayer = class {
|
|
3891
|
+
constructor() {
|
|
3892
|
+
this.id = "";
|
|
3893
|
+
this.playerName = "";
|
|
3894
|
+
this.playerHashtag = "";
|
|
3895
|
+
this.givenName = "";
|
|
3896
|
+
this.familyName = "";
|
|
3897
|
+
this.abilities = [];
|
|
3898
|
+
this.perks = [];
|
|
3899
|
+
this.health = {};
|
|
3900
|
+
this.resource = {};
|
|
3901
|
+
this.hasBaron = false;
|
|
3902
|
+
this.hasElder = false;
|
|
3903
|
+
this.level = 0;
|
|
3904
|
+
this.experience = {};
|
|
3905
|
+
}
|
|
3906
|
+
};
|
|
3907
|
+
|
|
3908
|
+
// types/ingame/tab/tabTeam.ts
|
|
3909
|
+
var tabTeam = class {
|
|
3910
|
+
constructor() {
|
|
3911
|
+
this.id = 0;
|
|
3912
|
+
this.players = [];
|
|
3913
|
+
}
|
|
3914
|
+
};
|
|
3915
|
+
|
|
3916
|
+
// types/ingame/teamfightTimeline/ingameTeamfightTimelineData.ts
|
|
3917
|
+
var ingameTeamfightTimelineData = class {
|
|
3918
|
+
constructor() {
|
|
3919
|
+
this.startTime = 0;
|
|
3920
|
+
this.endTime = 0;
|
|
3921
|
+
this.samples = [];
|
|
3922
|
+
this.players = [];
|
|
3923
|
+
this.kills = [];
|
|
3924
|
+
this.totalDamagePerPlayer = [];
|
|
3925
|
+
this.blueTotalDamage = 0;
|
|
3926
|
+
this.redTotalDamage = 0;
|
|
3927
|
+
this.blueKills = 0;
|
|
3928
|
+
this.redKills = 0;
|
|
3929
|
+
}
|
|
3930
|
+
};
|
|
3931
|
+
|
|
3932
|
+
// types/shared/style/team.ts
|
|
3933
|
+
var Team = /* @__PURE__ */ ((Team2) => {
|
|
3934
|
+
Team2[Team2["None"] = 0] = "None";
|
|
3935
|
+
Team2[Team2["Order"] = 1] = "Order";
|
|
3936
|
+
Team2[Team2["Chaos"] = 2] = "Chaos";
|
|
3937
|
+
Team2[Team2["Neutral"] = 3] = "Neutral";
|
|
3938
|
+
return Team2;
|
|
3939
|
+
})(Team || {});
|
|
3940
|
+
|
|
3941
|
+
// types/ingame/teamfightTimeline/teamfightKillEvent.ts
|
|
3942
|
+
var teamfightKillEvent = class {
|
|
3943
|
+
constructor() {
|
|
3944
|
+
this.gameTime = 0;
|
|
3945
|
+
this.killerName = "";
|
|
3946
|
+
this.victimName = "";
|
|
3947
|
+
this.killerTeam = 0 /* None */;
|
|
3948
|
+
this.assisterNames = [];
|
|
3949
|
+
}
|
|
3950
|
+
};
|
|
3951
|
+
|
|
3952
|
+
// types/ingame/teamfightTimeline/teamfightTimelinePlayer.ts
|
|
3953
|
+
var teamfightTimelinePlayer = class {
|
|
3954
|
+
constructor() {
|
|
3955
|
+
this.name = "";
|
|
3956
|
+
this.team = 0 /* None */;
|
|
3957
|
+
this.totalDamage = 0;
|
|
3958
|
+
this.died = false;
|
|
3959
|
+
}
|
|
3960
|
+
};
|
|
3961
|
+
|
|
3962
|
+
// types/ingame/teamfightTimeline/teamfightTimelineSample.ts
|
|
3963
|
+
var teamfightTimelineSample = class {
|
|
3964
|
+
constructor() {
|
|
3965
|
+
this.gameTime = 0;
|
|
3966
|
+
this.damageValues = [];
|
|
3967
|
+
this.teamCumulativeDamage = [];
|
|
3968
|
+
}
|
|
3969
|
+
};
|
|
3970
|
+
|
|
3971
|
+
// types/shared/bestOfType.ts
|
|
3972
|
+
var BestOfType = /* @__PURE__ */ ((BestOfType2) => {
|
|
3973
|
+
BestOfType2[BestOfType2["BestOf1"] = 1] = "BestOf1";
|
|
3974
|
+
BestOfType2[BestOfType2["BestOf2"] = 2] = "BestOf2";
|
|
3975
|
+
BestOfType2[BestOfType2["BestOf3"] = 3] = "BestOf3";
|
|
3976
|
+
BestOfType2[BestOfType2["BestOf5"] = 5] = "BestOf5";
|
|
3977
|
+
BestOfType2[BestOfType2["BestOf7"] = 7] = "BestOf7";
|
|
3978
|
+
return BestOfType2;
|
|
3979
|
+
})(BestOfType || {});
|
|
3980
|
+
|
|
3981
|
+
// types/ingame/topScoreboard/ingameScoreboardData.ts
|
|
3982
|
+
var ingameScoreboardData = class {
|
|
3983
|
+
constructor() {
|
|
3984
|
+
this.teams = [];
|
|
3985
|
+
this.gameTime = 0;
|
|
3986
|
+
this.bestOf = 1 /* BestOf1 */;
|
|
3987
|
+
}
|
|
3988
|
+
};
|
|
3989
|
+
|
|
3990
|
+
// types/ingame/topScoreboard/ingameScoreboardTeamData.ts
|
|
3991
|
+
var ingameScoreboardTeamData = class {
|
|
3992
|
+
constructor() {
|
|
3993
|
+
this.teamName = "";
|
|
3994
|
+
this.teamTag = "";
|
|
3995
|
+
this.teamIconUrl = "";
|
|
3996
|
+
this.seriesScore = {};
|
|
3997
|
+
this.totalScore = {};
|
|
3998
|
+
this.infoText = "";
|
|
3999
|
+
this.gold = 0;
|
|
4000
|
+
this.kills = 0;
|
|
4001
|
+
this.towers = 0;
|
|
4002
|
+
this.towerPlates = 0;
|
|
4003
|
+
this.grubs = 0;
|
|
4004
|
+
this.dragons = [];
|
|
4005
|
+
}
|
|
4006
|
+
};
|
|
4007
|
+
|
|
4008
|
+
// types/message/websocketMessageTypes.ts
|
|
4009
|
+
var websocketMessageTypes = class {
|
|
4010
|
+
};
|
|
4011
|
+
websocketMessageTypes.applicationLifetime = "application-lifetime";
|
|
4012
|
+
websocketMessageTypes.appSettingsUpdated = "app-settings-updated";
|
|
4013
|
+
websocketMessageTypes.cDragonCacheProgress = "cDragonCacheProgress";
|
|
4014
|
+
websocketMessageTypes.cDragonV2Progress = "cDragonV2Progress";
|
|
4015
|
+
websocketMessageTypes.cDragonV2Status = "cDragonV2Status";
|
|
4016
|
+
websocketMessageTypes.gameStatus = "gameStatus";
|
|
4017
|
+
websocketMessageTypes.champSelectState = "champion-select-state-update";
|
|
4018
|
+
websocketMessageTypes.champSelectAction = "champion-select-action";
|
|
4019
|
+
websocketMessageTypes.ingameState = "ingame-state-update";
|
|
4020
|
+
websocketMessageTypes.ingameRewind = "ingame-rewind";
|
|
4021
|
+
websocketMessageTypes.ingameTelemetry = "ingame-telemetry";
|
|
4022
|
+
websocketMessageTypes.fontsChanged = "fonts-changed";
|
|
4023
|
+
websocketMessageTypes.matchDatabaseUpdate = "match-database-update";
|
|
4024
|
+
websocketMessageTypes.gameDatabaseUpdate = "game-database-update";
|
|
4025
|
+
websocketMessageTypes.teamDatabaseUpdate = "team-database-update";
|
|
4026
|
+
websocketMessageTypes.seasonDatabaseUpdate = "season-database-update";
|
|
4027
|
+
websocketMessageTypes.appNotification = "app-notification";
|
|
4028
|
+
websocketMessageTypes.appNotificationCompleted = "app-notification-completed";
|
|
4029
|
+
websocketMessageTypes.ingameStyleUpdate = "ingame-style-update";
|
|
4030
|
+
websocketMessageTypes.globalScoreboardUpdate = "global-scoreboard-update";
|
|
4031
|
+
websocketMessageTypes.spawnTimerUpdate = "spawn-timer-update";
|
|
4032
|
+
websocketMessageTypes.inhibitorTimerSingleUpdate = "inhibitor-timer-single-update";
|
|
4033
|
+
websocketMessageTypes.inhibitorTimerDualUpdate = "inhibitor-timer-dual-update";
|
|
4034
|
+
websocketMessageTypes.championTabLeftUpdate = "championtab-left-update";
|
|
4035
|
+
websocketMessageTypes.championTabRightUpdate = "championtab-right-update";
|
|
4036
|
+
websocketMessageTypes.championTabUpdate = "championtab-update";
|
|
4037
|
+
websocketMessageTypes.playerScoreboardSlotUpdate = "player-scoreboard-slot-update";
|
|
4038
|
+
websocketMessageTypes.playerScoreboardContainerUpdate = "player-scoreboard-container-update";
|
|
4039
|
+
websocketMessageTypes.playerScoreboardGoldComparisonUpdate = "player-scoreboard-gold-comparison-update";
|
|
4040
|
+
websocketMessageTypes.styleSetUpdate = "style-set-update";
|
|
4041
|
+
websocketMessageTypes.styleVariantUpdate = "style-variant-update";
|
|
4042
|
+
websocketMessageTypes.updateActiveStyleSet = "update-active-style-set";
|
|
4043
|
+
websocketMessageTypes.postGameRoute = "postgame-route-change";
|
|
4044
|
+
websocketMessageTypes.postGameMockingUpdate = "postgame-mocking-update";
|
|
4045
|
+
websocketMessageTypes.gameResumed = "game-state-resumed";
|
|
4046
|
+
websocketMessageTypes.gamePaused = "game-state-paused";
|
|
4047
|
+
websocketMessageTypes.frontendRouteUpdate = "frontend-route-update";
|
|
4048
|
+
websocketMessageTypes.strokePropertiesUpdate = "stroke-properties-update";
|
|
4049
|
+
websocketMessageTypes.hotkeyFired = "hotkey-fired";
|
|
4050
|
+
websocketMessageTypes.activeComponentChanged = "active-component-changed";
|
|
4051
|
+
websocketMessageTypes.disabledOverlaysUpdate = "disabled-overlays-update";
|
|
4052
|
+
websocketMessageTypes.userTierUpdated = "user-tier-updated";
|
|
4053
|
+
websocketMessageTypes.damageEventHistoryUpdate = "damage-event-history-update";
|
|
4054
|
+
|
|
4055
|
+
// types/message/ingame/ingameRewindMessage.ts
|
|
4056
|
+
var ingameRewindMessage = class {
|
|
4057
|
+
constructor() {
|
|
4058
|
+
this.type = "";
|
|
4059
|
+
this.fromTime = 0;
|
|
4060
|
+
this.toTime = 0;
|
|
4061
|
+
}
|
|
4062
|
+
};
|
|
4063
|
+
|
|
4064
|
+
// types/message/ingame/ingameStateMessage.ts
|
|
4065
|
+
var ingameStateMessage = class {
|
|
4066
|
+
constructor() {
|
|
4067
|
+
this.type = "";
|
|
4068
|
+
}
|
|
4069
|
+
};
|
|
4070
|
+
|
|
4071
|
+
// types/message/pregame/champSelectActionMessage.ts
|
|
4072
|
+
var champSelectActionMessage = class {
|
|
4073
|
+
constructor() {
|
|
4074
|
+
this.type = "";
|
|
4075
|
+
this.action = {};
|
|
4076
|
+
}
|
|
4077
|
+
};
|
|
4078
|
+
|
|
4079
|
+
// types/message/pregame/champSelectStateMessage.ts
|
|
4080
|
+
var champSelectStateMessage = class {
|
|
4081
|
+
constructor() {
|
|
4082
|
+
this.type = "";
|
|
4083
|
+
this.state = {};
|
|
4084
|
+
}
|
|
4085
|
+
};
|
|
4086
|
+
|
|
4087
|
+
// types/message/pregame/frontendRouteUpdateMessage.ts
|
|
4088
|
+
var frontendRouteUpdateMessage = class {
|
|
4089
|
+
constructor() {
|
|
4090
|
+
this.type = "";
|
|
4091
|
+
this.uri = "";
|
|
4092
|
+
}
|
|
4093
|
+
};
|
|
4094
|
+
|
|
4095
|
+
// types/message/ui/activeComponentChangedEventArgs.ts
|
|
4096
|
+
var activeComponentChangedEventArgs = class {
|
|
4097
|
+
};
|
|
4098
|
+
|
|
4099
|
+
// types/message/ui/activeComponentChangedMessage.ts
|
|
4100
|
+
var activeComponentChangedMessage = class {
|
|
4101
|
+
constructor() {
|
|
4102
|
+
this.type = "";
|
|
4103
|
+
}
|
|
4104
|
+
};
|
|
4105
|
+
|
|
4106
|
+
// types/message/ui/applicationLifetimeMessage.ts
|
|
4107
|
+
var applicationLifetimeMessage = class {
|
|
4108
|
+
constructor() {
|
|
4109
|
+
this.type = "";
|
|
4110
|
+
this.message = "";
|
|
4111
|
+
}
|
|
4112
|
+
};
|
|
4113
|
+
|
|
4114
|
+
// types/message/ui/applicationNotificationCompletedMessage.ts
|
|
4115
|
+
var applicationNotificationCompletedMessage = class {
|
|
4116
|
+
constructor() {
|
|
4117
|
+
this.type = "";
|
|
4118
|
+
this.id = "";
|
|
4119
|
+
this.result = false;
|
|
4120
|
+
this.args = [];
|
|
4121
|
+
}
|
|
4122
|
+
};
|
|
4123
|
+
|
|
4124
|
+
// types/message/ui/applicationNotificationMessage.ts
|
|
4125
|
+
var applicationNotificationMessage = class {
|
|
4126
|
+
constructor() {
|
|
4127
|
+
this.type = "";
|
|
4128
|
+
this.id = "";
|
|
4129
|
+
this.title = "";
|
|
4130
|
+
this.message = "";
|
|
4131
|
+
this.args = [];
|
|
4132
|
+
this.accept = "";
|
|
4133
|
+
this.timestamp = /* @__PURE__ */ new Date();
|
|
4134
|
+
}
|
|
4135
|
+
};
|
|
4136
|
+
|
|
4137
|
+
// types/message/ui/assetType.ts
|
|
4138
|
+
var AssetType = /* @__PURE__ */ ((AssetType2) => {
|
|
4139
|
+
AssetType2[AssetType2["Item"] = 0] = "Item";
|
|
4140
|
+
AssetType2[AssetType2["ItemModifier"] = 1] = "ItemModifier";
|
|
4141
|
+
AssetType2[AssetType2["Champion"] = 2] = "Champion";
|
|
4142
|
+
AssetType2[AssetType2["ChampionAbility"] = 3] = "ChampionAbility";
|
|
4143
|
+
AssetType2[AssetType2["ChampionSkin"] = 4] = "ChampionSkin";
|
|
4144
|
+
AssetType2[AssetType2["Summoner"] = 5] = "Summoner";
|
|
4145
|
+
AssetType2[AssetType2["Perk"] = 6] = "Perk";
|
|
4146
|
+
AssetType2[AssetType2["PerkStyle"] = 7] = "PerkStyle";
|
|
4147
|
+
AssetType2[AssetType2["PerkSpell"] = 8] = "PerkSpell";
|
|
4148
|
+
AssetType2[AssetType2["Shared"] = 9] = "Shared";
|
|
4149
|
+
AssetType2[AssetType2["Unknown"] = 10] = "Unknown";
|
|
4150
|
+
return AssetType2;
|
|
4151
|
+
})(AssetType || {});
|
|
4152
|
+
|
|
4153
|
+
// types/message/ui/cacheOperation.ts
|
|
4154
|
+
var CacheOperation = /* @__PURE__ */ ((CacheOperation2) => {
|
|
4155
|
+
CacheOperation2[CacheOperation2["Starting"] = 0] = "Starting";
|
|
4156
|
+
CacheOperation2[CacheOperation2["FetchingMetadata"] = 1] = "FetchingMetadata";
|
|
4157
|
+
CacheOperation2[CacheOperation2["Verifying"] = 2] = "Verifying";
|
|
4158
|
+
CacheOperation2[CacheOperation2["Downloading"] = 3] = "Downloading";
|
|
4159
|
+
CacheOperation2[CacheOperation2["Copying"] = 4] = "Copying";
|
|
4160
|
+
CacheOperation2[CacheOperation2["BuildingManifest"] = 5] = "BuildingManifest";
|
|
4161
|
+
CacheOperation2[CacheOperation2["Complete"] = 6] = "Complete";
|
|
4162
|
+
CacheOperation2[CacheOperation2["Failed"] = 7] = "Failed";
|
|
4163
|
+
CacheOperation2[CacheOperation2["Cleanup"] = 8] = "Cleanup";
|
|
4164
|
+
return CacheOperation2;
|
|
4165
|
+
})(CacheOperation || {});
|
|
4166
|
+
|
|
4167
|
+
// types/message/ui/colorRGBA.ts
|
|
4168
|
+
var colorRGBA = class {
|
|
4169
|
+
constructor() {
|
|
4170
|
+
this.r = 0;
|
|
4171
|
+
this.g = 0;
|
|
4172
|
+
this.b = 0;
|
|
4173
|
+
this.a = 0;
|
|
4174
|
+
}
|
|
4175
|
+
};
|
|
4176
|
+
|
|
4177
|
+
// types/message/ui/communityDragonCacheProgressMessage.ts
|
|
4178
|
+
var communityDragonCacheProgressMessage = class {
|
|
4179
|
+
constructor() {
|
|
4180
|
+
this.type = "";
|
|
4181
|
+
this.statusMessage = "";
|
|
4182
|
+
this.fileProgress = 0;
|
|
4183
|
+
this.filesToDownload = 0;
|
|
4184
|
+
this.filesToVerify = 0;
|
|
4185
|
+
}
|
|
4186
|
+
};
|
|
4187
|
+
|
|
4188
|
+
// types/message/ui/communityDragonV2ProgressMessage.ts
|
|
4189
|
+
var communityDragonV2ProgressMessage = class {
|
|
4190
|
+
constructor() {
|
|
4191
|
+
this.type = "";
|
|
4192
|
+
this.operation = 0 /* Starting */;
|
|
4193
|
+
this.current = 0;
|
|
4194
|
+
this.total = 0;
|
|
4195
|
+
this.progressPercent = 0;
|
|
4196
|
+
this.elapsedMs = 0;
|
|
4197
|
+
this.isStepComplete = false;
|
|
4198
|
+
this.isVersionComplete = false;
|
|
4199
|
+
this.aggregateTotal = 0;
|
|
4200
|
+
this.aggregateCurrent = 0;
|
|
4201
|
+
this.aggregateProgressPercent = 0;
|
|
4202
|
+
this.aggregateElapsedMs = 0;
|
|
4203
|
+
}
|
|
4204
|
+
};
|
|
4205
|
+
|
|
4206
|
+
// types/message/ui/communityDragonV2StatusMessage.ts
|
|
4207
|
+
var communityDragonV2StatusMessage = class {
|
|
4208
|
+
constructor() {
|
|
4209
|
+
this.type = "";
|
|
4210
|
+
this.version = "";
|
|
4211
|
+
this.status = "";
|
|
4212
|
+
}
|
|
4213
|
+
};
|
|
4214
|
+
|
|
4215
|
+
// types/message/ui/damageEventHistoryUpdateMessage.ts
|
|
4216
|
+
var damageEventHistoryUpdateMessage = class {
|
|
4217
|
+
constructor() {
|
|
4218
|
+
this.type = "";
|
|
4219
|
+
this.entry = {};
|
|
4220
|
+
}
|
|
4221
|
+
};
|
|
4222
|
+
|
|
4223
|
+
// types/message/ui/fontsChangedMessage.ts
|
|
4224
|
+
var fontsChangedMessage = class {
|
|
4225
|
+
constructor() {
|
|
4226
|
+
this.type = "";
|
|
4227
|
+
this.fonts = [];
|
|
4228
|
+
}
|
|
4229
|
+
};
|
|
4230
|
+
|
|
4231
|
+
// types/shared/databaseUpdateType.ts
|
|
4232
|
+
var DatabaseUpdateType = /* @__PURE__ */ ((DatabaseUpdateType2) => {
|
|
4233
|
+
DatabaseUpdateType2[DatabaseUpdateType2["Add"] = 0] = "Add";
|
|
4234
|
+
DatabaseUpdateType2[DatabaseUpdateType2["Remove"] = 1] = "Remove";
|
|
4235
|
+
DatabaseUpdateType2[DatabaseUpdateType2["Update"] = 2] = "Update";
|
|
4236
|
+
DatabaseUpdateType2[DatabaseUpdateType2["Start"] = 3] = "Start";
|
|
4237
|
+
DatabaseUpdateType2[DatabaseUpdateType2["End"] = 4] = "End";
|
|
4238
|
+
return DatabaseUpdateType2;
|
|
4239
|
+
})(DatabaseUpdateType || {});
|
|
4240
|
+
|
|
4241
|
+
// types/message/ui/gameDatabaseUpdateMessage.ts
|
|
4242
|
+
var gameDatabaseUpdateMessage = class {
|
|
4243
|
+
constructor() {
|
|
4244
|
+
this.type = "";
|
|
4245
|
+
this.game = {};
|
|
4246
|
+
this.updateType = 0 /* Add */;
|
|
4247
|
+
}
|
|
4248
|
+
};
|
|
4249
|
+
|
|
4250
|
+
// types/message/ui/gameStatusMessage.ts
|
|
4251
|
+
var gameStatusMessage = class {
|
|
4252
|
+
constructor() {
|
|
4253
|
+
this.type = "";
|
|
4254
|
+
this.gameState = 0 /* OutOfGame */;
|
|
4255
|
+
}
|
|
4256
|
+
};
|
|
4257
|
+
|
|
4258
|
+
// types/message/ui/hotkeyFiredMessage.ts
|
|
4259
|
+
var hotkeyFiredMessage = class {
|
|
4260
|
+
constructor() {
|
|
4261
|
+
this.type = "";
|
|
4262
|
+
this.activatedOverlayId = 0;
|
|
4263
|
+
this.toggle = false;
|
|
4264
|
+
}
|
|
4265
|
+
};
|
|
4266
|
+
|
|
4267
|
+
// types/message/ui/ingameTelemetryMessage.ts
|
|
4268
|
+
var ingameTelemetryMessage = class {
|
|
4269
|
+
constructor() {
|
|
4270
|
+
this.type = "";
|
|
4271
|
+
}
|
|
4272
|
+
};
|
|
4273
|
+
|
|
4274
|
+
// types/message/ui/matchDatabaseUpdateMessage.ts
|
|
4275
|
+
var matchDatabaseUpdateMessage = class {
|
|
4276
|
+
constructor() {
|
|
4277
|
+
this.type = "";
|
|
4278
|
+
this.match = {};
|
|
4279
|
+
this.updateType = 0 /* Add */;
|
|
4280
|
+
}
|
|
4281
|
+
};
|
|
4282
|
+
|
|
4283
|
+
// types/message/ui/partialStrokeProperties.ts
|
|
4284
|
+
var partialStrokeProperties = class {
|
|
4285
|
+
};
|
|
4286
|
+
|
|
4287
|
+
// types/message/ui/seasonDatabaseUpdateMessage.ts
|
|
4288
|
+
var seasonDatabaseUpdateMessage = class {
|
|
4289
|
+
constructor() {
|
|
4290
|
+
this.type = "";
|
|
4291
|
+
this.season = {};
|
|
4292
|
+
this.updateType = 0 /* Add */;
|
|
4293
|
+
}
|
|
4294
|
+
};
|
|
4295
|
+
|
|
4296
|
+
// types/message/ui/strokeLayer.ts
|
|
4297
|
+
var StrokeLayer = /* @__PURE__ */ ((StrokeLayer2) => {
|
|
4298
|
+
StrokeLayer2[StrokeLayer2["underEverything"] = 0] = "underEverything";
|
|
4299
|
+
StrokeLayer2[StrokeLayer2["aboveTerrain"] = 1] = "aboveTerrain";
|
|
4300
|
+
StrokeLayer2[StrokeLayer2["belowHUD"] = 2] = "belowHUD";
|
|
4301
|
+
StrokeLayer2[StrokeLayer2["aboveHealthbars"] = 3] = "aboveHealthbars";
|
|
4302
|
+
StrokeLayer2[StrokeLayer2["twoDee"] = 4] = "twoDee";
|
|
4303
|
+
return StrokeLayer2;
|
|
4304
|
+
})(StrokeLayer || {});
|
|
4305
|
+
|
|
4306
|
+
// types/message/ui/strokeLineStyle.ts
|
|
4307
|
+
var StrokeLineStyle = /* @__PURE__ */ ((StrokeLineStyle2) => {
|
|
4308
|
+
StrokeLineStyle2[StrokeLineStyle2["solid"] = 0] = "solid";
|
|
4309
|
+
StrokeLineStyle2[StrokeLineStyle2["dashed"] = 1] = "dashed";
|
|
4310
|
+
return StrokeLineStyle2;
|
|
4311
|
+
})(StrokeLineStyle || {});
|
|
4312
|
+
|
|
4313
|
+
// types/message/ui/strokePropertiesChangedMessage.ts
|
|
4314
|
+
var strokePropertiesChangedMessage = class {
|
|
4315
|
+
constructor() {
|
|
4316
|
+
this.type = "";
|
|
4317
|
+
this.properties = {};
|
|
4318
|
+
}
|
|
4319
|
+
};
|
|
4320
|
+
|
|
4321
|
+
// types/message/ui/strokeTipStyle.ts
|
|
4322
|
+
var StrokeTipStyle = /* @__PURE__ */ ((StrokeTipStyle2) => {
|
|
4323
|
+
StrokeTipStyle2[StrokeTipStyle2["circle"] = 0] = "circle";
|
|
4324
|
+
StrokeTipStyle2[StrokeTipStyle2["rectangle"] = 1] = "rectangle";
|
|
4325
|
+
StrokeTipStyle2[StrokeTipStyle2["triangleArrow"] = 2] = "triangleArrow";
|
|
4326
|
+
StrokeTipStyle2[StrokeTipStyle2["roundBackwardsArrow"] = 3] = "roundBackwardsArrow";
|
|
4327
|
+
StrokeTipStyle2[StrokeTipStyle2["sharpBackwardsArrow"] = 4] = "sharpBackwardsArrow";
|
|
4328
|
+
return StrokeTipStyle2;
|
|
4329
|
+
})(StrokeTipStyle || {});
|
|
4330
|
+
|
|
4331
|
+
// types/message/ui/styleSetUpdatedMessage.ts
|
|
4332
|
+
var styleSetUpdatedMessage = class {
|
|
4333
|
+
constructor() {
|
|
4334
|
+
this.type = "";
|
|
4335
|
+
this.styleSetName = "";
|
|
4336
|
+
this.variantType = "";
|
|
4337
|
+
this.variantName = "";
|
|
4338
|
+
this.variantIsActive = false;
|
|
4339
|
+
}
|
|
4340
|
+
};
|
|
4341
|
+
|
|
4342
|
+
// types/message/ui/styleVariantUpdatedEventArgs.ts
|
|
4343
|
+
var styleVariantUpdatedEventArgs = class {
|
|
4344
|
+
constructor() {
|
|
4345
|
+
this.variantName = "";
|
|
4346
|
+
this.variantType = "";
|
|
4347
|
+
}
|
|
4348
|
+
};
|
|
4349
|
+
|
|
4350
|
+
// types/message/ui/styleVariantUpdateMessage.ts
|
|
4351
|
+
var styleVariantUpdateMessage = class {
|
|
4352
|
+
constructor() {
|
|
4353
|
+
this.type = "";
|
|
4354
|
+
this.variantName = "";
|
|
4355
|
+
this.variantType = "";
|
|
4356
|
+
}
|
|
4357
|
+
};
|
|
4358
|
+
|
|
4359
|
+
// types/message/ui/teamDatabaseUpdateMessage.ts
|
|
4360
|
+
var teamDatabaseUpdateMessage = class {
|
|
4361
|
+
constructor() {
|
|
4362
|
+
this.type = "";
|
|
4363
|
+
this.team = {};
|
|
4364
|
+
this.updateType = 0 /* Add */;
|
|
4365
|
+
}
|
|
4366
|
+
};
|
|
4367
|
+
|
|
4368
|
+
// types/message/ui/userTierUpdatedMessage.ts
|
|
4369
|
+
var userTierUpdatedMessage = class {
|
|
4370
|
+
constructor() {
|
|
4371
|
+
this.type = "";
|
|
4372
|
+
this.tier = 0 /* Free */;
|
|
4373
|
+
this.isStartup = false;
|
|
4374
|
+
}
|
|
4375
|
+
};
|
|
4376
|
+
|
|
4377
|
+
// types/postgame/infoRow.ts
|
|
4378
|
+
var infoRow = class {
|
|
4379
|
+
constructor() {
|
|
4380
|
+
this.key = "";
|
|
4381
|
+
this.value = "";
|
|
4382
|
+
}
|
|
4383
|
+
};
|
|
4384
|
+
|
|
4385
|
+
// types/postgame/matchOverviewData.ts
|
|
4386
|
+
var matchOverviewData = class {
|
|
4387
|
+
constructor() {
|
|
4388
|
+
this.games = [];
|
|
4389
|
+
}
|
|
4390
|
+
};
|
|
4391
|
+
|
|
4392
|
+
// types/postgame/matchOverviewGameSummary.ts
|
|
4393
|
+
var matchOverviewGameSummary = class {
|
|
4394
|
+
constructor() {
|
|
4395
|
+
this.gameId = 0;
|
|
4396
|
+
this.gameNumber = 0;
|
|
4397
|
+
this.gameTime = 0;
|
|
4398
|
+
this.teamSummaries = {};
|
|
4399
|
+
this.isComplete = false;
|
|
4400
|
+
}
|
|
4401
|
+
};
|
|
4402
|
+
|
|
4403
|
+
// types/postgame/matchOverviewTeamSummary.ts
|
|
4404
|
+
var matchOverviewTeamSummary = class {
|
|
4405
|
+
constructor() {
|
|
4406
|
+
this.teamId = 0;
|
|
4407
|
+
this.kills = 0;
|
|
4408
|
+
this.deaths = 0;
|
|
4409
|
+
this.assists = 0;
|
|
4410
|
+
this.picks = [];
|
|
4411
|
+
}
|
|
4412
|
+
};
|
|
4413
|
+
|
|
4414
|
+
// types/postgame/playerDeath.ts
|
|
4415
|
+
var playerDeath = class {
|
|
4416
|
+
constructor() {
|
|
4417
|
+
this.id = 0;
|
|
4418
|
+
this.gameId = 0;
|
|
4419
|
+
this.position = {};
|
|
4420
|
+
this.gameTime = 0;
|
|
4421
|
+
this.killerId = "";
|
|
4422
|
+
this.victimId = "";
|
|
4423
|
+
this.assisterIds = [];
|
|
4424
|
+
}
|
|
4425
|
+
};
|
|
4426
|
+
|
|
4427
|
+
// types/postgame/postGameDataType.ts
|
|
4428
|
+
var PostGameDataType = /* @__PURE__ */ ((PostGameDataType2) => {
|
|
4429
|
+
PostGameDataType2[PostGameDataType2["At14Min"] = 0] = "At14Min";
|
|
4430
|
+
PostGameDataType2[PostGameDataType2["FullGame"] = 1] = "FullGame";
|
|
4431
|
+
return PostGameDataType2;
|
|
4432
|
+
})(PostGameDataType || {});
|
|
4433
|
+
|
|
4434
|
+
// types/postgame/postGameOverview.ts
|
|
4435
|
+
var postGameOverview = class {
|
|
4436
|
+
constructor() {
|
|
4437
|
+
this.gameTime = 0;
|
|
4438
|
+
this.patch = "";
|
|
4439
|
+
this.teamInfoBySide = {};
|
|
4440
|
+
this.teamOverviewBySide = {};
|
|
4441
|
+
}
|
|
4442
|
+
};
|
|
4443
|
+
|
|
4444
|
+
// types/postgame/postGamePlayerInfo.ts
|
|
4445
|
+
var postGamePlayerInfo = class {
|
|
4446
|
+
constructor() {
|
|
4447
|
+
this.id = 0;
|
|
4448
|
+
this.gameId = 0;
|
|
4449
|
+
this.dataType = 0 /* At14Min */;
|
|
4450
|
+
this.puuid = "";
|
|
4451
|
+
this.teamSide = 0;
|
|
4452
|
+
this.laneIndex = 0;
|
|
4453
|
+
this.kills = 0;
|
|
4454
|
+
this.deaths = 0;
|
|
4455
|
+
this.assists = 0;
|
|
4456
|
+
this.creepScore = 0;
|
|
4457
|
+
this.visionScore = 0;
|
|
4458
|
+
this.gold = 0;
|
|
4459
|
+
this.damageDealt = 0;
|
|
4460
|
+
this.physicalDamageDealt = 0;
|
|
4461
|
+
this.magicDamageDealt = 0;
|
|
4462
|
+
this.trueDamageDealt = 0;
|
|
4463
|
+
this.damageTaken = 0;
|
|
4464
|
+
this.physicalDamageTaken = 0;
|
|
4465
|
+
this.magicDamageTaken = 0;
|
|
4466
|
+
this.trueDamageTaken = 0;
|
|
4467
|
+
this.wardsPlaced = 0;
|
|
4468
|
+
this.wardsKilled = 0;
|
|
4469
|
+
this.controlWardsPlaced = 0;
|
|
4470
|
+
this.deepWardsPlaced = 0;
|
|
4471
|
+
this.turretPlatesTaken = 0;
|
|
4472
|
+
this.towersTaken = 0;
|
|
4473
|
+
}
|
|
4474
|
+
};
|
|
4475
|
+
|
|
4476
|
+
// types/postgame/postGamePlayerPage.ts
|
|
4477
|
+
var postGamePlayerPage = class {
|
|
4478
|
+
constructor() {
|
|
4479
|
+
this.champion = {};
|
|
4480
|
+
this.nameWithTag = "";
|
|
4481
|
+
}
|
|
4482
|
+
};
|
|
4483
|
+
|
|
4484
|
+
// types/postgame/postGamePlayerRunesAndItems.ts
|
|
4485
|
+
var postGamePlayerRunesAndItems = class {
|
|
4486
|
+
constructor() {
|
|
4487
|
+
this.perks = {};
|
|
4488
|
+
this.items = [];
|
|
4489
|
+
this.champion = {};
|
|
4490
|
+
this.nameWithTag = "";
|
|
4491
|
+
}
|
|
4492
|
+
};
|
|
4493
|
+
|
|
4494
|
+
// types/postgame/postGamePlayerStats.ts
|
|
4495
|
+
var postGamePlayerStats = class {
|
|
4496
|
+
constructor() {
|
|
4497
|
+
this.infoRows = [];
|
|
4498
|
+
this.champion = {};
|
|
4499
|
+
this.nameWithTag = "";
|
|
4500
|
+
}
|
|
4501
|
+
};
|
|
4502
|
+
|
|
4503
|
+
// types/postgame/postGameTeamInfo.ts
|
|
4504
|
+
var postGameTeamInfo = class {
|
|
4505
|
+
constructor() {
|
|
4506
|
+
this.gameId = 0;
|
|
4507
|
+
this.teamId = 0;
|
|
4508
|
+
this.dataType = 0 /* At14Min */;
|
|
4509
|
+
this.teamSide = 0;
|
|
4510
|
+
this.towers = 0;
|
|
4511
|
+
this.turretPlates = 0;
|
|
4512
|
+
this.grubs = 0;
|
|
4513
|
+
this.riftHeralds = 0;
|
|
4514
|
+
this.gold = 0;
|
|
4515
|
+
this.kills = 0;
|
|
4516
|
+
this.deaths = 0;
|
|
4517
|
+
this.assists = 0;
|
|
4518
|
+
}
|
|
4519
|
+
};
|
|
4520
|
+
|
|
4521
|
+
// types/postgame/postGameTeamOverview.ts
|
|
4522
|
+
var postGameTeamOverview = class {
|
|
4523
|
+
constructor() {
|
|
4524
|
+
this.kills = 0;
|
|
4525
|
+
this.deaths = 0;
|
|
4526
|
+
this.assists = 0;
|
|
4527
|
+
this.gold = 0;
|
|
4528
|
+
this.towers = 0;
|
|
4529
|
+
this.grubs = 0;
|
|
4530
|
+
this.heralds = 0;
|
|
4531
|
+
this.dragons = [];
|
|
4532
|
+
this.elderDragons = 0;
|
|
4533
|
+
this.baronNashors = 0;
|
|
4534
|
+
this.bans = [];
|
|
4535
|
+
}
|
|
4536
|
+
};
|
|
4537
|
+
|
|
4538
|
+
// types/postgame/vector3.ts
|
|
4539
|
+
var vector3 = class {
|
|
4540
|
+
constructor() {
|
|
4541
|
+
this.x = 0;
|
|
4542
|
+
this.y = 0;
|
|
4543
|
+
this.z = 0;
|
|
4544
|
+
}
|
|
4545
|
+
};
|
|
4546
|
+
|
|
4547
|
+
// types/postgame/damage/postGameDamageGraph.ts
|
|
4548
|
+
var postGameDamageGraph = class {
|
|
4549
|
+
constructor() {
|
|
4550
|
+
this.damageByTeam = {};
|
|
4551
|
+
}
|
|
4552
|
+
};
|
|
4553
|
+
|
|
4554
|
+
// types/postgame/damage/postGameDamageGraphByTeam.ts
|
|
4555
|
+
var postGameDamageGraphByTeam = class {
|
|
4556
|
+
constructor() {
|
|
4557
|
+
this.entries = [];
|
|
4558
|
+
this.team = {};
|
|
4559
|
+
}
|
|
4560
|
+
};
|
|
4561
|
+
|
|
4562
|
+
// types/postgame/damage/postGameDamageGraphEntry.ts
|
|
4563
|
+
var postGameDamageGraphEntry = class {
|
|
4564
|
+
constructor() {
|
|
4565
|
+
this.damage = 0;
|
|
4566
|
+
this.magicDamage = 0;
|
|
4567
|
+
this.physicalDamage = 0;
|
|
4568
|
+
this.trueDamage = 0;
|
|
4569
|
+
}
|
|
4570
|
+
};
|
|
4571
|
+
|
|
4572
|
+
// types/postgame/gold/postGameGoldGraph.ts
|
|
4573
|
+
var postGameGoldGraph = class {
|
|
4574
|
+
constructor() {
|
|
4575
|
+
this.current = {};
|
|
4576
|
+
this.teams = {};
|
|
4577
|
+
}
|
|
4578
|
+
};
|
|
4579
|
+
|
|
4580
|
+
// types/postgame/gold/singleGameGoldGraph.ts
|
|
4581
|
+
var singleGameGoldGraph = class {
|
|
4582
|
+
constructor() {
|
|
4583
|
+
this.goldAtTime = {};
|
|
4584
|
+
}
|
|
4585
|
+
};
|
|
4586
|
+
|
|
4587
|
+
// types/postgame/style/combinedView/combinedViewStyle.ts
|
|
4588
|
+
var combinedViewStyle = class {
|
|
4589
|
+
constructor() {
|
|
4590
|
+
this.transition = {};
|
|
4591
|
+
this.fileVersion = "1.0";
|
|
4592
|
+
}
|
|
4593
|
+
};
|
|
4594
|
+
|
|
4595
|
+
// types/postgame/style/combinedView/combinedViewTransitionType.ts
|
|
4596
|
+
var CombinedViewTransitionType = /* @__PURE__ */ ((CombinedViewTransitionType2) => {
|
|
4597
|
+
CombinedViewTransitionType2[CombinedViewTransitionType2["Cut"] = 0] = "Cut";
|
|
4598
|
+
CombinedViewTransitionType2[CombinedViewTransitionType2["Fade"] = 1] = "Fade";
|
|
4599
|
+
CombinedViewTransitionType2[CombinedViewTransitionType2["Stinger"] = 2] = "Stinger";
|
|
4600
|
+
return CombinedViewTransitionType2;
|
|
4601
|
+
})(CombinedViewTransitionType || {});
|
|
4602
|
+
|
|
4603
|
+
// types/postgame/style/combinedView/combinedViewTransitionStyle.ts
|
|
4604
|
+
var combinedViewTransitionStyle = class {
|
|
4605
|
+
constructor() {
|
|
4606
|
+
this.type = 0 /* Cut */;
|
|
4607
|
+
this.durationMs = 0;
|
|
4608
|
+
this.stingerUrl = "";
|
|
4609
|
+
this.stingerSwapTimeMs = 0;
|
|
4610
|
+
}
|
|
4611
|
+
};
|
|
4612
|
+
|
|
4613
|
+
// types/postgame/style/fearlessTree/fearlessTree.ts
|
|
4614
|
+
var fearlessTree = class {
|
|
4615
|
+
constructor() {
|
|
4616
|
+
this.layout = {};
|
|
4617
|
+
this.background = "";
|
|
4618
|
+
this.header = {};
|
|
4619
|
+
this.gameNode = {};
|
|
4620
|
+
this.connector = {};
|
|
4621
|
+
this.banRow = {};
|
|
4622
|
+
this.fileVersion = "1.0";
|
|
4623
|
+
}
|
|
4624
|
+
};
|
|
4625
|
+
|
|
4626
|
+
// types/postgame/style/fearlessTree/fearlessTreeBanRowStyle.ts
|
|
4627
|
+
var fearlessTreeBanRowStyle = class {
|
|
4628
|
+
constructor() {
|
|
4629
|
+
this.background = "";
|
|
4630
|
+
this.layout = {};
|
|
4631
|
+
}
|
|
4632
|
+
};
|
|
4633
|
+
|
|
4634
|
+
// types/postgame/style/fearlessTree/fearlessTreeConnectorStyle.ts
|
|
4635
|
+
var fearlessTreeConnectorStyle = class {
|
|
4636
|
+
constructor() {
|
|
4637
|
+
this.lineColor = "";
|
|
4638
|
+
this.lineWidth = "";
|
|
4639
|
+
this.offsetLeft = 0;
|
|
4640
|
+
this.offsetRight = 0;
|
|
4641
|
+
}
|
|
4642
|
+
};
|
|
4643
|
+
|
|
4644
|
+
// types/postgame/style/fearlessTree/fearlessTreeGameNodeStyle.ts
|
|
4645
|
+
var fearlessTreeGameNodeStyle = class {
|
|
4646
|
+
constructor() {
|
|
4647
|
+
this.background = "";
|
|
4648
|
+
this.labelText = "";
|
|
4649
|
+
this.labelStyle = {};
|
|
4650
|
+
this.layout = {};
|
|
4651
|
+
this.currentIconSize = "";
|
|
4652
|
+
this.previousIconSize = "";
|
|
4653
|
+
this.banMarkColor = "";
|
|
4654
|
+
this.banMarkSize = "";
|
|
4655
|
+
this.teamRowGap = "";
|
|
4656
|
+
this.iconGap = "";
|
|
4657
|
+
}
|
|
4658
|
+
};
|
|
4659
|
+
|
|
4660
|
+
// types/postgame/style/fearlessTree/fearlessTreeHeaderStyle.ts
|
|
4661
|
+
var fearlessTreeHeaderStyle = class {
|
|
4662
|
+
constructor() {
|
|
4663
|
+
this.titleText = "";
|
|
4664
|
+
this.title = {};
|
|
4665
|
+
this.subtitleText = "";
|
|
4666
|
+
this.subtitle = {};
|
|
4667
|
+
this.layout = {};
|
|
4668
|
+
}
|
|
4669
|
+
};
|
|
4670
|
+
|
|
4671
|
+
// types/postgame/style/gameAnalysis/contentContainerStyle.ts
|
|
4672
|
+
var contentContainerStyle = class {
|
|
4673
|
+
constructor() {
|
|
4674
|
+
this.teamsAndTimer = {};
|
|
4675
|
+
this.damageStats = {};
|
|
4676
|
+
this.matchSummary = {};
|
|
4677
|
+
this.goldGraph = {};
|
|
4678
|
+
this.layout = {};
|
|
4679
|
+
this.background = "";
|
|
4680
|
+
this.useCustomBackground = false;
|
|
4681
|
+
}
|
|
4682
|
+
};
|
|
4683
|
+
|
|
4684
|
+
// types/postgame/style/gameAnalysis/curveStyle.ts
|
|
4685
|
+
var curveStyle = class {
|
|
4686
|
+
constructor() {
|
|
4687
|
+
this.blueLineColor = "";
|
|
4688
|
+
this.blueAreaColor = "";
|
|
4689
|
+
this.redLineColor = "";
|
|
4690
|
+
this.redAreaColor = "";
|
|
4691
|
+
this.layout = {};
|
|
4692
|
+
}
|
|
4693
|
+
};
|
|
4694
|
+
|
|
4695
|
+
// types/postgame/style/gameAnalysis/damageBarStyle.ts
|
|
4696
|
+
var damageBarStyle2 = class {
|
|
4697
|
+
constructor() {
|
|
4698
|
+
this.magicDamageBackground = "";
|
|
4699
|
+
this.physicalDamageBackground = "";
|
|
4700
|
+
this.trueDamageBackground = "";
|
|
4701
|
+
this.background = "";
|
|
4702
|
+
this.layout = {};
|
|
4703
|
+
}
|
|
4704
|
+
};
|
|
4705
|
+
|
|
4706
|
+
// types/postgame/style/gameAnalysis/damageStatsStyle.ts
|
|
4707
|
+
var damageStatsStyle = class {
|
|
4708
|
+
constructor() {
|
|
4709
|
+
this.headline = {};
|
|
4710
|
+
this.damageByType = false;
|
|
4711
|
+
this.redTeam = {};
|
|
4712
|
+
this.blueTeam = {};
|
|
4713
|
+
this.useCustomBackground = false;
|
|
4714
|
+
}
|
|
4715
|
+
};
|
|
4716
|
+
|
|
4717
|
+
// types/postgame/style/gameAnalysis/gameAnalysis.ts
|
|
4718
|
+
var gameAnalysis = class {
|
|
4719
|
+
constructor() {
|
|
4720
|
+
this.contentContainer = {};
|
|
4721
|
+
this.background = "";
|
|
4722
|
+
this.layout = {};
|
|
4723
|
+
this.fileVersion = "1.0";
|
|
4724
|
+
}
|
|
4725
|
+
};
|
|
4726
|
+
|
|
4727
|
+
// types/postgame/style/gameAnalysis/gameTimerStyle.ts
|
|
4728
|
+
var gameTimerStyle = class {
|
|
4729
|
+
constructor() {
|
|
4730
|
+
this.timertext = {};
|
|
4731
|
+
this.timerlabel = {};
|
|
4732
|
+
}
|
|
4733
|
+
};
|
|
4734
|
+
|
|
4735
|
+
// types/postgame/style/gameAnalysis/goldGraphStyle.ts
|
|
4736
|
+
var goldGraphStyle = class {
|
|
4737
|
+
constructor() {
|
|
4738
|
+
this.headline = {};
|
|
4739
|
+
this.axis = {};
|
|
4740
|
+
this.verticalSeparator = "";
|
|
4741
|
+
this.horizontalSeparator = "";
|
|
4742
|
+
this.curve = {};
|
|
4743
|
+
this.useCustomBackground = false;
|
|
4744
|
+
}
|
|
4745
|
+
};
|
|
4746
|
+
|
|
4747
|
+
// types/postgame/style/gameAnalysis/matchSummaryStyle.ts
|
|
4748
|
+
var matchSummaryStyle = class {
|
|
4749
|
+
constructor() {
|
|
4750
|
+
this.labeling = {};
|
|
4751
|
+
this.layout = {};
|
|
4752
|
+
this.redTeam = {};
|
|
4753
|
+
this.blueTeam = {};
|
|
4754
|
+
this.useCustomBackground = false;
|
|
4755
|
+
}
|
|
4756
|
+
};
|
|
4757
|
+
|
|
4758
|
+
// types/postgame/style/gameAnalysis/teamDamageStyle.ts
|
|
4759
|
+
var teamDamageStyle = class {
|
|
4760
|
+
constructor() {
|
|
4761
|
+
this.championImage = {};
|
|
4762
|
+
this.damageText = {};
|
|
4763
|
+
this.damageBar = {};
|
|
4764
|
+
this.useCustomBackground = false;
|
|
4765
|
+
}
|
|
4766
|
+
};
|
|
4767
|
+
|
|
4768
|
+
// types/postgame/style/gameAnalysis/teamsAndTimerStyle.ts
|
|
4769
|
+
var teamsAndTimerStyle = class {
|
|
4770
|
+
constructor() {
|
|
4771
|
+
this.layout = {};
|
|
4772
|
+
this.blueTeam = {};
|
|
4773
|
+
this.redTeam = {};
|
|
4774
|
+
this.gameTimer = {};
|
|
4775
|
+
this.useCustomBackground = false;
|
|
4776
|
+
}
|
|
4777
|
+
};
|
|
4778
|
+
|
|
4779
|
+
// types/postgame/style/gameAnalysis/teamSummaryStyle.ts
|
|
4780
|
+
var teamSummaryStyle = class {
|
|
4781
|
+
constructor() {
|
|
4782
|
+
this.text = {};
|
|
4783
|
+
this.drakeImage = {};
|
|
4784
|
+
this.championImage = {};
|
|
4785
|
+
this.useCustomBackground = false;
|
|
4786
|
+
}
|
|
4787
|
+
};
|
|
4788
|
+
|
|
4789
|
+
// types/postgame/style/gameAnalysis/timerTeamStyle.ts
|
|
4790
|
+
var timerTeamStyle = class {
|
|
4791
|
+
constructor() {
|
|
4792
|
+
this.teamname = {};
|
|
4793
|
+
this.layout = {};
|
|
4794
|
+
this.nameTemplate = "";
|
|
4795
|
+
}
|
|
4796
|
+
};
|
|
4797
|
+
|
|
4798
|
+
// types/postgame/style/matchupOverview/matchupOverview.ts
|
|
4799
|
+
var matchupOverview = class {
|
|
4800
|
+
constructor() {
|
|
4801
|
+
this.layout = {};
|
|
4802
|
+
this.background = "";
|
|
4803
|
+
this.header = {};
|
|
4804
|
+
this.teamBar = {};
|
|
4805
|
+
this.gameRow = {};
|
|
4806
|
+
this.fileVersion = "1.0";
|
|
4807
|
+
}
|
|
4808
|
+
};
|
|
4809
|
+
|
|
4810
|
+
// types/postgame/style/matchupOverview/matchupOverviewGameRowStyle.ts
|
|
4811
|
+
var matchupOverviewGameRowStyle = class {
|
|
4812
|
+
constructor() {
|
|
4813
|
+
this.background = "";
|
|
4814
|
+
this.activeBackground = "";
|
|
4815
|
+
this.layout = {};
|
|
4816
|
+
this.gap = "";
|
|
4817
|
+
this.championIcon = {};
|
|
4818
|
+
this.championIconGap = "";
|
|
4819
|
+
this.championsAlign = 0 /* TopLeft */;
|
|
4820
|
+
this.kdaText = {};
|
|
4821
|
+
this.kdaLayout = {};
|
|
4822
|
+
this.gameTimeText = {};
|
|
4823
|
+
this.scoreText = {};
|
|
4824
|
+
this.scoreLayout = {};
|
|
4825
|
+
this.gameTimeLabelText = "";
|
|
4826
|
+
this.winnerColor = "";
|
|
4827
|
+
this.loserColor = "";
|
|
4828
|
+
this.showDifferentTextWhenUnplayed = false;
|
|
4829
|
+
this.unplayedScoreRow = {};
|
|
4830
|
+
this.unplayedScoreRowLabelText = "";
|
|
4831
|
+
}
|
|
4832
|
+
};
|
|
4833
|
+
|
|
4834
|
+
// types/postgame/style/matchupOverview/matchupOverviewHeaderStyle.ts
|
|
4835
|
+
var matchupOverviewHeaderStyle = class {
|
|
4836
|
+
constructor() {
|
|
4837
|
+
this.titleText = "";
|
|
4838
|
+
this.title = {};
|
|
4839
|
+
this.subtitleText = "";
|
|
4840
|
+
this.subtitle = {};
|
|
4841
|
+
this.background = "";
|
|
4842
|
+
this.layout = {};
|
|
4843
|
+
}
|
|
4844
|
+
};
|
|
4845
|
+
|
|
4846
|
+
// types/postgame/style/matchupOverview/matchupOverviewTeamBarStyle.ts
|
|
4847
|
+
var matchupOverviewTeamBarStyle = class {
|
|
4848
|
+
constructor() {
|
|
4849
|
+
this.teamNameText = {};
|
|
4850
|
+
this.teamNameTemplate = "";
|
|
4851
|
+
this.iconSize = "";
|
|
4852
|
+
this.versus = {};
|
|
4853
|
+
this.background = "";
|
|
4854
|
+
this.layout = {};
|
|
4855
|
+
}
|
|
4856
|
+
};
|
|
4857
|
+
|
|
4858
|
+
// types/postgame/style/matchupTable/matchCardStyle.ts
|
|
4859
|
+
var matchCardStyle = class {
|
|
4860
|
+
constructor() {
|
|
4861
|
+
this.layout = {};
|
|
4862
|
+
this.background = "";
|
|
4863
|
+
this.teamTag = {};
|
|
4864
|
+
this.versus = {};
|
|
4865
|
+
this.score = {};
|
|
4866
|
+
this.iconSize = "";
|
|
4867
|
+
this.upcomingHighlight = "";
|
|
4868
|
+
this.upcomingBorder = "";
|
|
4869
|
+
this.winnerColor = "";
|
|
4870
|
+
this.loserColor = "";
|
|
4871
|
+
this.defaultColor = "";
|
|
4872
|
+
this.dateText = {};
|
|
4873
|
+
this.dateTimeTemplate = "";
|
|
4874
|
+
this.teamTagTemplate = "";
|
|
4875
|
+
}
|
|
4876
|
+
};
|
|
4877
|
+
|
|
4878
|
+
// types/postgame/style/matchupTable/matchupGridStyle.ts
|
|
4879
|
+
var matchupGridStyle = class {
|
|
4880
|
+
constructor() {
|
|
4881
|
+
this.layout = {};
|
|
4882
|
+
this.gap = "";
|
|
4883
|
+
this.columns = 0;
|
|
4884
|
+
}
|
|
4885
|
+
};
|
|
4886
|
+
|
|
4887
|
+
// types/postgame/style/matchupTable/matchupHeaderStyle.ts
|
|
4888
|
+
var matchupHeaderStyle = class {
|
|
4889
|
+
constructor() {
|
|
4890
|
+
this.titleText = "";
|
|
4891
|
+
this.title = {};
|
|
4892
|
+
this.subtitleText = "";
|
|
4893
|
+
this.subtitle = {};
|
|
4894
|
+
this.layout = {};
|
|
4895
|
+
}
|
|
4896
|
+
};
|
|
4897
|
+
|
|
4898
|
+
// types/postgame/style/matchupTable/matchupScoreStyle.ts
|
|
4899
|
+
var matchupScoreStyle = class {
|
|
4900
|
+
constructor() {
|
|
4901
|
+
this.text = {};
|
|
4902
|
+
this.displayMode = "";
|
|
4903
|
+
this.borderMode = "";
|
|
4904
|
+
this.dotSize = "";
|
|
4905
|
+
this.dotColor = "";
|
|
4906
|
+
this.dotEmptyColor = "";
|
|
4907
|
+
this.layout = {};
|
|
4908
|
+
}
|
|
4909
|
+
};
|
|
4910
|
+
|
|
4911
|
+
// types/postgame/style/matchupTable/matchupTable.ts
|
|
4912
|
+
var matchupTable = class {
|
|
4913
|
+
constructor() {
|
|
4914
|
+
this.content = {};
|
|
4915
|
+
this.background = "";
|
|
4916
|
+
this.layout = {};
|
|
4917
|
+
this.fileVersion = "1.0";
|
|
4918
|
+
}
|
|
4919
|
+
};
|
|
4920
|
+
|
|
4921
|
+
// types/postgame/style/matchupTable/matchupTableContentStyle.ts
|
|
4922
|
+
var matchupTableContentStyle = class {
|
|
4923
|
+
constructor() {
|
|
4924
|
+
this.layout = {};
|
|
4925
|
+
this.background = "";
|
|
4926
|
+
this.header = {};
|
|
4927
|
+
this.grid = {};
|
|
4928
|
+
this.matchCard = {};
|
|
4929
|
+
}
|
|
4930
|
+
};
|
|
4931
|
+
|
|
4932
|
+
// types/postgame/style/matchupTable/matchupVersusStyle.ts
|
|
4933
|
+
var matchupVersusStyle = class {
|
|
4934
|
+
constructor() {
|
|
4935
|
+
this.text = {};
|
|
4936
|
+
this.background = "";
|
|
4937
|
+
this.layout = {};
|
|
4938
|
+
this.vsText = "";
|
|
4939
|
+
}
|
|
4940
|
+
};
|
|
4941
|
+
|
|
4942
|
+
// types/postgame/style/matchupTable/scoreDisplayMode.ts
|
|
4943
|
+
var ScoreDisplayMode = /* @__PURE__ */ ((ScoreDisplayMode2) => {
|
|
4944
|
+
ScoreDisplayMode2[ScoreDisplayMode2["Dots"] = 0] = "Dots";
|
|
4945
|
+
ScoreDisplayMode2[ScoreDisplayMode2["Squares"] = 1] = "Squares";
|
|
4946
|
+
ScoreDisplayMode2[ScoreDisplayMode2["Diamonds"] = 2] = "Diamonds";
|
|
4947
|
+
ScoreDisplayMode2[ScoreDisplayMode2["Numbers"] = 3] = "Numbers";
|
|
4948
|
+
return ScoreDisplayMode2;
|
|
4949
|
+
})(ScoreDisplayMode || {});
|
|
4950
|
+
|
|
4951
|
+
// types/postgame/style/matchupTable/scoreDotBorderMode.ts
|
|
4952
|
+
var ScoreDotBorderMode = /* @__PURE__ */ ((ScoreDotBorderMode2) => {
|
|
4953
|
+
ScoreDotBorderMode2[ScoreDotBorderMode2["Always"] = 0] = "Always";
|
|
4954
|
+
ScoreDotBorderMode2[ScoreDotBorderMode2["EmptyOnly"] = 1] = "EmptyOnly";
|
|
4955
|
+
ScoreDotBorderMode2[ScoreDotBorderMode2["Never"] = 2] = "Never";
|
|
4956
|
+
return ScoreDotBorderMode2;
|
|
4957
|
+
})(ScoreDotBorderMode || {});
|
|
4958
|
+
|
|
4959
|
+
// types/postgame/style/playerAnalysis/championContainer.ts
|
|
4960
|
+
var championContainer = class {
|
|
4961
|
+
constructor() {
|
|
4962
|
+
this.championImage = {};
|
|
4963
|
+
this.layoutStyle = {};
|
|
4964
|
+
this.heading = {};
|
|
4965
|
+
this.subHeading = {};
|
|
4966
|
+
this.nameTemplate = "";
|
|
4967
|
+
this.subHeadingTemplate = "";
|
|
4968
|
+
}
|
|
4969
|
+
};
|
|
4970
|
+
|
|
4971
|
+
// types/postgame/style/playerAnalysis/championStats.ts
|
|
4972
|
+
var championStats = class {
|
|
4973
|
+
constructor() {
|
|
4974
|
+
this.container = {};
|
|
4975
|
+
this.championInfoContainer = {};
|
|
4976
|
+
this.runeContainer = {};
|
|
4977
|
+
this.itemStats = {};
|
|
4978
|
+
this.fileVersion = "1.0";
|
|
4979
|
+
}
|
|
4980
|
+
};
|
|
4981
|
+
|
|
4982
|
+
// types/postgame/style/playerAnalysis/championStatsContainer.ts
|
|
4983
|
+
var championStatsContainer = class {
|
|
4984
|
+
constructor() {
|
|
4985
|
+
this.layoutStyle = {};
|
|
4986
|
+
this.background = "";
|
|
4987
|
+
this.useCustomBackground = false;
|
|
4988
|
+
}
|
|
4989
|
+
};
|
|
4990
|
+
|
|
4991
|
+
// types/postgame/style/playerAnalysis/divider.ts
|
|
4992
|
+
var divider = class {
|
|
4993
|
+
constructor() {
|
|
4994
|
+
this.layout = {};
|
|
4995
|
+
this.color = "";
|
|
4996
|
+
}
|
|
4997
|
+
};
|
|
4998
|
+
|
|
4999
|
+
// types/postgame/style/playerAnalysis/fearlessDraftStyle.ts
|
|
5000
|
+
var fearlessDraftStyle = class {
|
|
5001
|
+
constructor() {
|
|
5002
|
+
this.container = {};
|
|
5003
|
+
this.laneIconStyle = {};
|
|
5004
|
+
this.laneRowLayoutStyle = {};
|
|
5005
|
+
this.fileVersion = "1.0";
|
|
5006
|
+
}
|
|
5007
|
+
};
|
|
5008
|
+
|
|
5009
|
+
// types/postgame/style/playerAnalysis/fearlessDraftStylePregame.ts
|
|
5010
|
+
var fearlessDraftStylePregame = class {
|
|
5011
|
+
constructor() {
|
|
5012
|
+
this.container = {};
|
|
5013
|
+
this.laneIconStyle = {};
|
|
5014
|
+
this.laneRowLayoutStyle = {};
|
|
5015
|
+
this.fileVersion = "1.0";
|
|
5016
|
+
}
|
|
5017
|
+
};
|
|
5018
|
+
|
|
5019
|
+
// types/postgame/style/playerAnalysis/itemIcon.ts
|
|
5020
|
+
var itemIcon = class {
|
|
5021
|
+
constructor() {
|
|
5022
|
+
this.layout = {};
|
|
5023
|
+
this.text = {};
|
|
5024
|
+
this.divider = {};
|
|
5025
|
+
}
|
|
5026
|
+
};
|
|
5027
|
+
|
|
5028
|
+
// types/postgame/style/playerAnalysis/itemStats.ts
|
|
5029
|
+
var itemStats = class {
|
|
5030
|
+
constructor() {
|
|
5031
|
+
this.layout = {};
|
|
5032
|
+
this.heading = {};
|
|
5033
|
+
this.item = {};
|
|
5034
|
+
}
|
|
5035
|
+
};
|
|
5036
|
+
|
|
5037
|
+
// types/postgame/style/playerAnalysis/laneIconStyle.ts
|
|
5038
|
+
var laneIconStyle = class {
|
|
5039
|
+
constructor() {
|
|
5040
|
+
this.layoutStyle = {};
|
|
5041
|
+
this.fillColor = "";
|
|
5042
|
+
}
|
|
5043
|
+
};
|
|
5044
|
+
|
|
5045
|
+
// types/postgame/style/playerAnalysis/laneRowLayoutStyle.ts
|
|
5046
|
+
var laneRowLayoutStyle = class {
|
|
5047
|
+
constructor() {
|
|
5048
|
+
this.layoutStyle = {};
|
|
5049
|
+
this.gapX = "";
|
|
5050
|
+
this.gapY = "";
|
|
5051
|
+
this.background = "";
|
|
5052
|
+
}
|
|
5053
|
+
};
|
|
5054
|
+
|
|
5055
|
+
// types/postgame/style/playerAnalysis/runeContainer.ts
|
|
5056
|
+
var runeContainer = class {
|
|
5057
|
+
constructor() {
|
|
5058
|
+
this.heading = {};
|
|
5059
|
+
this.container = {};
|
|
5060
|
+
this.runePathIcon = {};
|
|
5061
|
+
this.keyStone = {};
|
|
5062
|
+
this.runes = {};
|
|
5063
|
+
this.divider = {};
|
|
5064
|
+
}
|
|
5065
|
+
};
|
|
5066
|
+
|
|
5067
|
+
// types/postgame/style/playerAnalysis/runeIcon.ts
|
|
5068
|
+
var runeIcon = class {
|
|
5069
|
+
constructor() {
|
|
5070
|
+
this.text = {};
|
|
5071
|
+
this.layout = {};
|
|
5072
|
+
}
|
|
5073
|
+
};
|
|
5074
|
+
|
|
5075
|
+
// types/pregame/actionSubType.ts
|
|
5076
|
+
var ActionSubType = /* @__PURE__ */ ((ActionSubType2) => {
|
|
5077
|
+
ActionSubType2[ActionSubType2["START"] = 0] = "START";
|
|
5078
|
+
ActionSubType2[ActionSubType2["HOVER"] = 1] = "HOVER";
|
|
5079
|
+
ActionSubType2[ActionSubType2["LOCK"] = 2] = "LOCK";
|
|
5080
|
+
return ActionSubType2;
|
|
5081
|
+
})(ActionSubType || {});
|
|
5082
|
+
|
|
5083
|
+
// types/pregame/actionType.ts
|
|
5084
|
+
var ActionType = /* @__PURE__ */ ((ActionType2) => {
|
|
5085
|
+
ActionType2[ActionType2["TEN_BANS_REVEAL"] = 0] = "TEN_BANS_REVEAL";
|
|
5086
|
+
ActionType2[ActionType2["PHASE_TRANSITION"] = 1] = "PHASE_TRANSITION";
|
|
5087
|
+
ActionType2[ActionType2["PICK"] = 2] = "PICK";
|
|
5088
|
+
ActionType2[ActionType2["BAN"] = 3] = "BAN";
|
|
5089
|
+
return ActionType2;
|
|
5090
|
+
})(ActionType || {});
|
|
5091
|
+
|
|
5092
|
+
// types/pregame/banSlot.ts
|
|
5093
|
+
var banSlot = class {
|
|
5094
|
+
constructor() {
|
|
5095
|
+
this.isActive = false;
|
|
5096
|
+
}
|
|
5097
|
+
};
|
|
5098
|
+
|
|
5099
|
+
// types/pregame/championSelectTeam.ts
|
|
5100
|
+
var championSelectTeam = class {
|
|
5101
|
+
constructor() {
|
|
5102
|
+
this.bans = [];
|
|
5103
|
+
this.slots = [];
|
|
5104
|
+
this.timeline = [];
|
|
5105
|
+
this.index = 0;
|
|
5106
|
+
this.scoreMatch = {};
|
|
5107
|
+
this.scoreSeason = {};
|
|
5108
|
+
}
|
|
5109
|
+
};
|
|
5110
|
+
|
|
5111
|
+
// types/pregame/champSelectStateMetaData.ts
|
|
5112
|
+
var champSelectStateMetaData = class {
|
|
5113
|
+
constructor() {
|
|
5114
|
+
this.bestOfType = 1 /* BestOf1 */;
|
|
5115
|
+
this.patch = "0.0.0";
|
|
5116
|
+
this.performanceData = {};
|
|
5117
|
+
}
|
|
5118
|
+
};
|
|
5119
|
+
|
|
5120
|
+
// types/pregame/champSelectStatePerformanceData.ts
|
|
5121
|
+
var champSelectStatePerformanceData = class {
|
|
5122
|
+
constructor() {
|
|
5123
|
+
this.updateDuration = 0;
|
|
5124
|
+
}
|
|
5125
|
+
};
|
|
5126
|
+
|
|
5127
|
+
// types/shared/matchRuleSet.ts
|
|
5128
|
+
var MatchRuleSet = /* @__PURE__ */ ((MatchRuleSet2) => {
|
|
5129
|
+
MatchRuleSet2[MatchRuleSet2["Standard"] = 0] = "Standard";
|
|
5130
|
+
MatchRuleSet2[MatchRuleSet2["PartialFearless"] = 1] = "PartialFearless";
|
|
5131
|
+
MatchRuleSet2[MatchRuleSet2["Fearless"] = 2] = "Fearless";
|
|
5132
|
+
return MatchRuleSet2;
|
|
5133
|
+
})(MatchRuleSet || {});
|
|
5134
|
+
|
|
5135
|
+
// types/pregame/matchData.ts
|
|
5136
|
+
var matchData = class {
|
|
5137
|
+
constructor() {
|
|
5138
|
+
this.matchId = 0;
|
|
5139
|
+
this.seasonId = 0;
|
|
5140
|
+
this.isActive = false;
|
|
5141
|
+
this.type = 1 /* BestOf1 */;
|
|
5142
|
+
this.ruleSet = 0 /* Standard */;
|
|
5143
|
+
this.onStage = false;
|
|
5144
|
+
}
|
|
5145
|
+
};
|
|
5146
|
+
|
|
5147
|
+
// types/pregame/pickBanActionEventArgs.ts
|
|
5148
|
+
var pickBanActionEventArgs = class {
|
|
5149
|
+
constructor() {
|
|
5150
|
+
this.type = "";
|
|
5151
|
+
this.subType = "";
|
|
5152
|
+
this.actorId = 0;
|
|
5153
|
+
this.id = 0;
|
|
5154
|
+
this.gameTeamId = 0;
|
|
5155
|
+
}
|
|
5156
|
+
};
|
|
5157
|
+
|
|
5158
|
+
// types/pregame/pickBanPhase.ts
|
|
5159
|
+
var PickBanPhase = /* @__PURE__ */ ((PickBanPhase2) => {
|
|
5160
|
+
PickBanPhase2[PickBanPhase2["BEGIN"] = 0] = "BEGIN";
|
|
5161
|
+
PickBanPhase2[PickBanPhase2["BAN1"] = 1] = "BAN1";
|
|
5162
|
+
PickBanPhase2[PickBanPhase2["BAN2"] = 2] = "BAN2";
|
|
5163
|
+
PickBanPhase2[PickBanPhase2["PICK1"] = 3] = "PICK1";
|
|
5164
|
+
PickBanPhase2[PickBanPhase2["PICK2"] = 4] = "PICK2";
|
|
5165
|
+
PickBanPhase2[PickBanPhase2["END"] = 5] = "END";
|
|
5166
|
+
PickBanPhase2[PickBanPhase2["WAIT"] = 6] = "WAIT";
|
|
5167
|
+
return PickBanPhase2;
|
|
5168
|
+
})(PickBanPhase || {});
|
|
5169
|
+
|
|
5170
|
+
// types/pregame/pickBanTimer.ts
|
|
5171
|
+
var pickBanTimer = class {
|
|
5172
|
+
constructor() {
|
|
5173
|
+
this.phaseName = 0 /* BEGIN */;
|
|
5174
|
+
this.phaseDuration = 0;
|
|
5175
|
+
this.timeRemaining = 0;
|
|
5176
|
+
}
|
|
5177
|
+
};
|
|
5178
|
+
|
|
5179
|
+
// types/pregame/pickSlot.ts
|
|
5180
|
+
var pickSlot = class {
|
|
5181
|
+
constructor() {
|
|
5182
|
+
this.id = 0;
|
|
5183
|
+
this.isActive = false;
|
|
5184
|
+
this.player = "";
|
|
5185
|
+
this.summonerSpells = [];
|
|
5186
|
+
}
|
|
5187
|
+
};
|
|
5188
|
+
|
|
5189
|
+
// types/pregame/timeLineActionType.ts
|
|
5190
|
+
var TimeLineActionType = /* @__PURE__ */ ((TimeLineActionType2) => {
|
|
5191
|
+
TimeLineActionType2[TimeLineActionType2["HoverPick"] = 0] = "HoverPick";
|
|
5192
|
+
TimeLineActionType2[TimeLineActionType2["Pick"] = 1] = "Pick";
|
|
5193
|
+
TimeLineActionType2[TimeLineActionType2["Ban"] = 2] = "Ban";
|
|
5194
|
+
return TimeLineActionType2;
|
|
5195
|
+
})(TimeLineActionType || {});
|
|
5196
|
+
|
|
5197
|
+
// types/pregame/timelineEntry.ts
|
|
5198
|
+
var timelineEntry = class {
|
|
5199
|
+
constructor() {
|
|
5200
|
+
this.type = 0 /* HoverPick */;
|
|
5201
|
+
this.champion = {};
|
|
5202
|
+
this.timer = {};
|
|
5203
|
+
}
|
|
5204
|
+
};
|
|
5205
|
+
|
|
5206
|
+
// types/pregame/style/banSlotLayoutStyling.ts
|
|
5207
|
+
var banSlotLayoutStyling = class {
|
|
5208
|
+
constructor() {
|
|
5209
|
+
this.blueBanSlot = {};
|
|
5210
|
+
this.redBanSlot = {};
|
|
5211
|
+
}
|
|
5212
|
+
};
|
|
5213
|
+
|
|
5214
|
+
// types/pregame/style/banStyle.ts
|
|
5215
|
+
var banStyle = class {
|
|
5216
|
+
constructor() {
|
|
5217
|
+
this.backgroundColor = "";
|
|
5218
|
+
this.iconColor = "";
|
|
5219
|
+
}
|
|
5220
|
+
};
|
|
5221
|
+
|
|
5222
|
+
// types/pregame/style/heroStatsDisplayMode.ts
|
|
5223
|
+
var HeroStatsDisplayMode = /* @__PURE__ */ ((HeroStatsDisplayMode2) => {
|
|
5224
|
+
HeroStatsDisplayMode2[HeroStatsDisplayMode2["None"] = 0] = "None";
|
|
5225
|
+
HeroStatsDisplayMode2[HeroStatsDisplayMode2["UGG"] = 1] = "UGG";
|
|
5226
|
+
HeroStatsDisplayMode2[HeroStatsDisplayMode2["Tournament"] = 2] = "Tournament";
|
|
5227
|
+
return HeroStatsDisplayMode2;
|
|
5228
|
+
})(HeroStatsDisplayMode || {});
|
|
5229
|
+
|
|
5230
|
+
// types/pregame/style/bottomRowPickBanStyle.ts
|
|
5231
|
+
var bottomRowPickBanStyle = class {
|
|
5232
|
+
constructor() {
|
|
5233
|
+
this.fileVersion = "1.0";
|
|
5234
|
+
this.background = "";
|
|
5235
|
+
this.size = {};
|
|
5236
|
+
this.tournamentData = {};
|
|
5237
|
+
this.neutralColor = "";
|
|
5238
|
+
this.leftTeam = {};
|
|
5239
|
+
this.rightTeam = {};
|
|
5240
|
+
this.heroStats = 0 /* None */;
|
|
5241
|
+
this.heroStatDurationSeconds = 0;
|
|
5242
|
+
}
|
|
5243
|
+
};
|
|
5244
|
+
|
|
5245
|
+
// types/pregame/style/bottomRowTeamStyle.ts
|
|
5246
|
+
var bottomRowTeamStyle = class {
|
|
5247
|
+
constructor() {
|
|
5248
|
+
this.color = "";
|
|
5249
|
+
this.banStyle = {};
|
|
5250
|
+
this.teamInfo = {};
|
|
5251
|
+
this.playerSlotPickingStyle = {};
|
|
5252
|
+
this.playerSlotStyle = {};
|
|
5253
|
+
}
|
|
5254
|
+
};
|
|
5255
|
+
|
|
5256
|
+
// types/pregame/style/centerContent.ts
|
|
5257
|
+
var centerContent = class {
|
|
5258
|
+
constructor() {
|
|
5259
|
+
this.layoutStyle = {};
|
|
5260
|
+
this.background = "";
|
|
5261
|
+
}
|
|
5262
|
+
};
|
|
5263
|
+
|
|
5264
|
+
// types/pregame/style/centerContentLayoutStyling.ts
|
|
5265
|
+
var centerContentLayoutStyling = class {
|
|
5266
|
+
constructor() {
|
|
5267
|
+
this.centerContent = {};
|
|
5268
|
+
}
|
|
5269
|
+
};
|
|
5270
|
+
|
|
5271
|
+
// types/pregame/style/centerContentStyling.ts
|
|
5272
|
+
var centerContentStyling = class {
|
|
5273
|
+
constructor() {
|
|
5274
|
+
this.centerContent = {};
|
|
5275
|
+
}
|
|
5276
|
+
};
|
|
5277
|
+
|
|
5278
|
+
// types/pregame/style/championSelectEUStyle.ts
|
|
5279
|
+
var championSelectEUStyle = class {
|
|
5280
|
+
constructor() {
|
|
5281
|
+
this.fileVersion = "1.0";
|
|
5282
|
+
this.layout = {};
|
|
5283
|
+
this.playerSlotLeft = {};
|
|
5284
|
+
this.playerSlotRight = {};
|
|
5285
|
+
this.championSlotLeft = {};
|
|
5286
|
+
this.championSlotRight = {};
|
|
5287
|
+
this.pickBansLeft = {};
|
|
5288
|
+
this.pickBansRight = {};
|
|
5289
|
+
this.tournamentData = {};
|
|
5290
|
+
this.teamNameRight = {};
|
|
5291
|
+
this.teamNameLeft = {};
|
|
5292
|
+
this.coachSlotLeft = {};
|
|
5293
|
+
this.coachSlotRight = {};
|
|
5294
|
+
this.phaseTimer = {};
|
|
5295
|
+
this.centerContent = {};
|
|
5296
|
+
this.heroStats = 0 /* None */;
|
|
5297
|
+
this.heroStatDurationSeconds = 0;
|
|
5298
|
+
this.showCoaches = false;
|
|
5299
|
+
}
|
|
5300
|
+
};
|
|
5301
|
+
|
|
5302
|
+
// types/pregame/style/championSlot.ts
|
|
5303
|
+
var championSlot = class {
|
|
5304
|
+
constructor() {
|
|
5305
|
+
this.textStyle = {};
|
|
5306
|
+
this.background = "";
|
|
5307
|
+
this.separator = "";
|
|
5308
|
+
this.hover = "";
|
|
5309
|
+
this.separatorWidth = "";
|
|
5310
|
+
}
|
|
5311
|
+
};
|
|
5312
|
+
|
|
5313
|
+
// types/pregame/style/championsSlot.ts
|
|
5314
|
+
var championsSlot = class {
|
|
5315
|
+
constructor() {
|
|
5316
|
+
this.playerName = {};
|
|
5317
|
+
}
|
|
5318
|
+
};
|
|
5319
|
+
|
|
5320
|
+
// types/pregame/style/coachSlot.ts
|
|
5321
|
+
var coachSlot = class {
|
|
5322
|
+
constructor() {
|
|
5323
|
+
this.layoutStyle = {};
|
|
5324
|
+
this.textStyle = {};
|
|
5325
|
+
this.background = "";
|
|
5326
|
+
this.show = false;
|
|
5327
|
+
}
|
|
5328
|
+
};
|
|
5329
|
+
|
|
5330
|
+
// types/pregame/style/colorComponentStyling.ts
|
|
5331
|
+
var colorComponentStyling = class {
|
|
5332
|
+
constructor() {
|
|
5333
|
+
this.blueTeam = {};
|
|
5334
|
+
this.redTeam = {};
|
|
5335
|
+
this.infoContent = {};
|
|
5336
|
+
this.centerContent = {};
|
|
5337
|
+
this.phaseTimer = {};
|
|
5338
|
+
}
|
|
5339
|
+
};
|
|
5340
|
+
|
|
5341
|
+
// types/pregame/style/colorStyling.ts
|
|
5342
|
+
var colorStyling = class {
|
|
5343
|
+
constructor() {
|
|
5344
|
+
this.backgroundColor = "";
|
|
5345
|
+
this.foregroundColor = "";
|
|
5346
|
+
}
|
|
5347
|
+
};
|
|
5348
|
+
|
|
5349
|
+
// types/pregame/style/divider.ts
|
|
5350
|
+
var divider2 = class {
|
|
5351
|
+
constructor() {
|
|
5352
|
+
this.layout = {};
|
|
5353
|
+
this.background = "";
|
|
5354
|
+
}
|
|
5355
|
+
};
|
|
5356
|
+
|
|
5357
|
+
// types/pregame/style/fearLessByGame.ts
|
|
5358
|
+
var fearLessByGame = class {
|
|
5359
|
+
constructor() {
|
|
5360
|
+
this.layout = {};
|
|
5361
|
+
this.background = "";
|
|
5362
|
+
this.gap = "";
|
|
5363
|
+
this.leftTeamRow = {};
|
|
5364
|
+
this.rightTeamRow = {};
|
|
5365
|
+
this.fileVersion = "1.0";
|
|
5366
|
+
}
|
|
5367
|
+
};
|
|
5368
|
+
|
|
5369
|
+
// types/pregame/style/fearlessChampionImage.ts
|
|
5370
|
+
var fearlessChampionImage = class {
|
|
5371
|
+
constructor() {
|
|
5372
|
+
this.layout = {};
|
|
5373
|
+
}
|
|
5374
|
+
};
|
|
5375
|
+
|
|
5376
|
+
// types/pregame/style/fearLessSingleRow.ts
|
|
5377
|
+
var fearLessSingleRow = class {
|
|
5378
|
+
constructor() {
|
|
5379
|
+
this.layout = {};
|
|
5380
|
+
this.gapX = "";
|
|
5381
|
+
this.gapY = "";
|
|
5382
|
+
this.textStyle = {};
|
|
5383
|
+
this.divider = {};
|
|
5384
|
+
this.championImage = {};
|
|
5385
|
+
}
|
|
5386
|
+
};
|
|
5387
|
+
|
|
5388
|
+
// types/pregame/style/infoContentColorStyling.ts
|
|
5389
|
+
var infoContentColorStyling = class {
|
|
5390
|
+
constructor() {
|
|
5391
|
+
this.infoContent = {};
|
|
5392
|
+
}
|
|
5393
|
+
};
|
|
5394
|
+
|
|
5395
|
+
// types/pregame/style/infoContentLayoutStyling.ts
|
|
5396
|
+
var infoContentLayoutStyling = class {
|
|
5397
|
+
constructor() {
|
|
5398
|
+
this.infoContent = {};
|
|
5399
|
+
}
|
|
5400
|
+
};
|
|
5401
|
+
|
|
5402
|
+
// types/pregame/style/infoContentTextStyle.ts
|
|
5403
|
+
var infoContentTextStyle = class {
|
|
5404
|
+
constructor() {
|
|
5405
|
+
this.patchText = {};
|
|
5406
|
+
this.patchNumber = {};
|
|
5407
|
+
}
|
|
5408
|
+
};
|
|
5409
|
+
|
|
5410
|
+
// types/pregame/style/layoutComponentStyling.ts
|
|
5411
|
+
var layoutComponentStyling = class {
|
|
5412
|
+
constructor() {
|
|
5413
|
+
this.blueTeam = {};
|
|
5414
|
+
this.redTeam = {};
|
|
5415
|
+
this.playerSlot = {};
|
|
5416
|
+
this.banSlot = {};
|
|
5417
|
+
this.infoContent = {};
|
|
5418
|
+
this.centerContent = {};
|
|
5419
|
+
this.phaseTimer = {};
|
|
5420
|
+
}
|
|
5421
|
+
};
|
|
5422
|
+
|
|
5423
|
+
// types/pregame/style/phaseTimer.ts
|
|
5424
|
+
var phaseTimer = class {
|
|
5425
|
+
constructor() {
|
|
5426
|
+
this.backgroundColor = "";
|
|
5427
|
+
this.leftColor = "";
|
|
5428
|
+
this.rightColor = "";
|
|
5429
|
+
this.neutralColor = "";
|
|
5430
|
+
this.layout = {};
|
|
5431
|
+
}
|
|
5432
|
+
};
|
|
5433
|
+
|
|
5434
|
+
// types/pregame/style/phaseTimerColorStyling.ts
|
|
5435
|
+
var phaseTimerColorStyling = class {
|
|
5436
|
+
constructor() {
|
|
5437
|
+
this.background = {};
|
|
5438
|
+
this.timer = {};
|
|
5439
|
+
this.useTeamColors = false;
|
|
5440
|
+
}
|
|
5441
|
+
};
|
|
5442
|
+
|
|
5443
|
+
// types/pregame/style/phaseTimerLayoutStyling.ts
|
|
5444
|
+
var phaseTimerLayoutStyling = class {
|
|
5445
|
+
constructor() {
|
|
5446
|
+
this.phaseTimer = {};
|
|
5447
|
+
}
|
|
5448
|
+
};
|
|
5449
|
+
|
|
5450
|
+
// types/pregame/style/pickBans.ts
|
|
5451
|
+
var pickBans = class {
|
|
5452
|
+
constructor() {
|
|
5453
|
+
this.containerLayout = {};
|
|
5454
|
+
this.banLayout = {};
|
|
5455
|
+
this.cornerColor = "";
|
|
5456
|
+
}
|
|
5457
|
+
};
|
|
5458
|
+
|
|
5459
|
+
// types/pregame/style/playerSlot.ts
|
|
5460
|
+
var playerSlot = class {
|
|
5461
|
+
constructor() {
|
|
5462
|
+
this.nameTemplate = "";
|
|
5463
|
+
this.textStyle = {};
|
|
5464
|
+
this.background = "";
|
|
5465
|
+
this.textSizePicking = "";
|
|
5466
|
+
this.textPicking = "";
|
|
5467
|
+
this.textNoPicking = "";
|
|
5468
|
+
}
|
|
5469
|
+
};
|
|
5470
|
+
|
|
5471
|
+
// types/pregame/style/playerSlotColorStyling.ts
|
|
5472
|
+
var playerSlotColorStyling = class {
|
|
5473
|
+
constructor() {
|
|
5474
|
+
this.general = {};
|
|
5475
|
+
this.playerName = {};
|
|
5476
|
+
}
|
|
5477
|
+
};
|
|
5478
|
+
|
|
5479
|
+
// types/pregame/style/playerSlotLayoutStyling.ts
|
|
5480
|
+
var playerSlotLayoutStyling = class {
|
|
5481
|
+
constructor() {
|
|
5482
|
+
this.playerSlot = {};
|
|
5483
|
+
}
|
|
5484
|
+
};
|
|
5485
|
+
|
|
5486
|
+
// types/pregame/style/playerSlotPickingStyle.ts
|
|
5487
|
+
var playerSlotPickingStyle = class {
|
|
5488
|
+
constructor() {
|
|
5489
|
+
this.textStyle = {};
|
|
5490
|
+
this.backgroundColor = "";
|
|
5491
|
+
this.hoverColor = "";
|
|
5492
|
+
}
|
|
5493
|
+
};
|
|
5494
|
+
|
|
5495
|
+
// types/pregame/style/playerSlotStyle.ts
|
|
5496
|
+
var playerSlotStyle = class {
|
|
5497
|
+
constructor() {
|
|
5498
|
+
this.nameTemplate = "";
|
|
5499
|
+
this.backgroundColor = "";
|
|
5500
|
+
this.textStyle = {};
|
|
5501
|
+
this.layout = {};
|
|
5502
|
+
}
|
|
5503
|
+
};
|
|
5504
|
+
|
|
5505
|
+
// types/pregame/style/scoreStyle.ts
|
|
5506
|
+
var scoreStyle = class {
|
|
5507
|
+
constructor() {
|
|
5508
|
+
this.backgroundColor = "";
|
|
5509
|
+
this.layout = {};
|
|
5510
|
+
this.textStyle = {};
|
|
5511
|
+
}
|
|
5512
|
+
};
|
|
5513
|
+
|
|
5514
|
+
// types/pregame/style/teamColorStyling.ts
|
|
5515
|
+
var teamColorStyling = class {
|
|
5516
|
+
constructor() {
|
|
5517
|
+
this.coachSlot = {};
|
|
5518
|
+
this.playerSlot = {};
|
|
5519
|
+
this.championSlot = {};
|
|
5520
|
+
this.banSlot = {};
|
|
5521
|
+
this.teamName = {};
|
|
5522
|
+
this.fearlessBans = {};
|
|
5523
|
+
}
|
|
5524
|
+
};
|
|
5525
|
+
|
|
5526
|
+
// types/pregame/style/teamInfoStyle.ts
|
|
5527
|
+
var teamInfoStyle = class {
|
|
5528
|
+
constructor() {
|
|
5529
|
+
this.nameTemplate = "";
|
|
5530
|
+
this.backgroundColor = "";
|
|
5531
|
+
this.scoreStyle = {};
|
|
5532
|
+
this.layout = {};
|
|
5533
|
+
this.textStyle = {};
|
|
5534
|
+
}
|
|
5535
|
+
};
|
|
5536
|
+
|
|
5537
|
+
// types/pregame/style/teamLayoutStyling.ts
|
|
5538
|
+
var teamLayoutStyling = class {
|
|
5539
|
+
constructor() {
|
|
5540
|
+
this.coachSlot = {};
|
|
5541
|
+
this.playerSlot = {};
|
|
5542
|
+
this.championSlot = {};
|
|
5543
|
+
this.banSlot = {};
|
|
5544
|
+
this.teamName = {};
|
|
5545
|
+
this.fearlessBans = {};
|
|
5546
|
+
}
|
|
5547
|
+
};
|
|
5548
|
+
|
|
5549
|
+
// types/pregame/style/teamName.ts
|
|
5550
|
+
var teamName = class {
|
|
5551
|
+
constructor() {
|
|
5552
|
+
this.nameTemplate = "";
|
|
5553
|
+
this.textStyle = {};
|
|
5554
|
+
this.background = "";
|
|
5555
|
+
}
|
|
5556
|
+
};
|
|
5557
|
+
|
|
5558
|
+
// types/pregame/style/teamTextStyle.ts
|
|
5559
|
+
var teamTextStyle = class {
|
|
5560
|
+
constructor() {
|
|
5561
|
+
this.coachSlot = {};
|
|
5562
|
+
this.playerSlot = {};
|
|
5563
|
+
this.championSlot = {};
|
|
5564
|
+
this.teamName = {};
|
|
5565
|
+
this.fearlessBans = {};
|
|
5566
|
+
}
|
|
5567
|
+
};
|
|
5568
|
+
|
|
5569
|
+
// types/pregame/style/textComponentStyling.ts
|
|
5570
|
+
var textComponentStyling = class {
|
|
5571
|
+
constructor() {
|
|
5572
|
+
this.blueTeam = {};
|
|
5573
|
+
this.redTeam = {};
|
|
5574
|
+
this.infoContent = {};
|
|
5575
|
+
}
|
|
5576
|
+
};
|
|
5577
|
+
|
|
5578
|
+
// types/pregame/style/textStyleWithBorder.ts
|
|
5579
|
+
var textStyleWithBorder = class {
|
|
5580
|
+
constructor() {
|
|
5581
|
+
this.fontFamily = "";
|
|
5582
|
+
this.fontWeight = "";
|
|
5583
|
+
this.fontSize = "";
|
|
5584
|
+
this.textAlignment = "";
|
|
5585
|
+
this.textColor = "";
|
|
5586
|
+
this.outlineColor = "";
|
|
5587
|
+
}
|
|
5588
|
+
};
|
|
5589
|
+
|
|
5590
|
+
// types/pregame/style/tournamentData.ts
|
|
5591
|
+
var tournamentData = class {
|
|
5592
|
+
constructor() {
|
|
5593
|
+
this.layoutStyle = {};
|
|
5594
|
+
this.patchNumber = {};
|
|
5595
|
+
this.patchText = {};
|
|
5596
|
+
this.background = "";
|
|
5597
|
+
}
|
|
5598
|
+
};
|
|
5599
|
+
|
|
5600
|
+
// types/pregame/style/bottomrow/bottomRowSizeStyle.ts
|
|
5601
|
+
var bottomRowSizeStyle = class {
|
|
5602
|
+
constructor() {
|
|
5603
|
+
this.banHeight = "";
|
|
5604
|
+
this.timerHeight = "";
|
|
5605
|
+
this.pickHeight = "";
|
|
5606
|
+
this.pickActiveWidthMultiplier = 0;
|
|
5607
|
+
}
|
|
5608
|
+
};
|
|
5609
|
+
|
|
5610
|
+
// types/pregame/style/bottomrow/bottomRowTournamentData.ts
|
|
5611
|
+
var bottomRowTournamentData = class {
|
|
5612
|
+
constructor() {
|
|
5613
|
+
this.show = false;
|
|
5614
|
+
this.layout = {};
|
|
5615
|
+
this.showTournamentIcon = false;
|
|
5616
|
+
this.icon = {};
|
|
5617
|
+
this.matchName = {};
|
|
5618
|
+
this.patch = {};
|
|
5619
|
+
}
|
|
5620
|
+
};
|
|
5621
|
+
|
|
5622
|
+
// types/pregame/style/legacy/legacyPickBanStyle.ts
|
|
5623
|
+
var legacyPickBanStyle = class {
|
|
5624
|
+
constructor() {
|
|
5625
|
+
this.fileVersion = "1.0";
|
|
5626
|
+
this.color = {};
|
|
5627
|
+
this.layout = {};
|
|
5628
|
+
this.text = {};
|
|
5629
|
+
}
|
|
5630
|
+
};
|
|
5631
|
+
|
|
5632
|
+
// types/rest/account/checkoutCompleteResponse.ts
|
|
5633
|
+
var checkoutCompleteResponse = class {
|
|
5634
|
+
constructor() {
|
|
5635
|
+
this.redirect = false;
|
|
5636
|
+
this.tier = 0 /* Free */;
|
|
5637
|
+
}
|
|
5638
|
+
};
|
|
5639
|
+
|
|
5640
|
+
// types/rest/account/paymentInterval.ts
|
|
5641
|
+
var PaymentInterval = /* @__PURE__ */ ((PaymentInterval2) => {
|
|
5642
|
+
PaymentInterval2[PaymentInterval2["Monthly"] = 0] = "Monthly";
|
|
5643
|
+
PaymentInterval2[PaymentInterval2["Yearly"] = 1] = "Yearly";
|
|
5644
|
+
return PaymentInterval2;
|
|
5645
|
+
})(PaymentInterval || {});
|
|
5646
|
+
|
|
5647
|
+
// types/rest/account/checkoutRequestDTO.ts
|
|
5648
|
+
var checkoutRequestDTO = class {
|
|
5649
|
+
constructor() {
|
|
5650
|
+
this.tier = 0 /* Free */;
|
|
5651
|
+
this.interval = 0 /* Monthly */;
|
|
5652
|
+
}
|
|
5653
|
+
};
|
|
5654
|
+
|
|
5655
|
+
// types/rest/account/localizedPriceData.ts
|
|
5656
|
+
var localizedPriceData = class {
|
|
5657
|
+
constructor() {
|
|
5658
|
+
this.localizedPriceByInterval = {};
|
|
5659
|
+
this.item = "";
|
|
5660
|
+
}
|
|
5661
|
+
};
|
|
5662
|
+
|
|
5663
|
+
// types/rest/account/planDetails.ts
|
|
5664
|
+
var planDetails = class {
|
|
5665
|
+
constructor() {
|
|
5666
|
+
this.planName = "";
|
|
5667
|
+
this.cost = "";
|
|
5668
|
+
this.currency = "";
|
|
5669
|
+
this.status = "";
|
|
5670
|
+
}
|
|
5671
|
+
};
|
|
5672
|
+
|
|
5673
|
+
// types/rest/account/portalSessionResponse.ts
|
|
5674
|
+
var portalSessionResponse = class {
|
|
5675
|
+
constructor() {
|
|
5676
|
+
this.url = "";
|
|
5677
|
+
}
|
|
5678
|
+
};
|
|
5679
|
+
|
|
5680
|
+
// types/rest/account/startCheckoutResponse.ts
|
|
5681
|
+
var startCheckoutResponse = class {
|
|
5682
|
+
constructor() {
|
|
5683
|
+
this.checkoutStarted = false;
|
|
5684
|
+
this.requiresRedirect = false;
|
|
5685
|
+
}
|
|
5686
|
+
};
|
|
5687
|
+
|
|
5688
|
+
// types/rest/billing_cycle/billingCycle.ts
|
|
5689
|
+
var billingCycle = class {
|
|
5690
|
+
constructor() {
|
|
5691
|
+
this.interval = "";
|
|
5692
|
+
this.frequency = 0;
|
|
5693
|
+
}
|
|
5694
|
+
};
|
|
5695
|
+
|
|
5696
|
+
// types/rest/billing_cycle/interval.ts
|
|
5697
|
+
var Interval = /* @__PURE__ */ ((Interval2) => {
|
|
5698
|
+
Interval2[Interval2["day"] = 0] = "day";
|
|
5699
|
+
Interval2[Interval2["week"] = 1] = "week";
|
|
5700
|
+
Interval2[Interval2["month"] = 2] = "month";
|
|
5701
|
+
Interval2[Interval2["year"] = 3] = "year";
|
|
5702
|
+
return Interval2;
|
|
5703
|
+
})(Interval || {});
|
|
5704
|
+
|
|
5705
|
+
// types/rest/match/addMatchRequestArgs.ts
|
|
5706
|
+
var addMatchRequestArgs = class {
|
|
5707
|
+
constructor() {
|
|
5708
|
+
this.type = 1 /* BestOf1 */;
|
|
5709
|
+
this.teams = [];
|
|
5710
|
+
this.isCurrent = false;
|
|
5711
|
+
this.ruleSet = "";
|
|
5712
|
+
}
|
|
5713
|
+
};
|
|
5714
|
+
|
|
5715
|
+
// types/rest/match/optionalMatchData.ts
|
|
5716
|
+
var optionalMatchData = class {
|
|
5717
|
+
};
|
|
5718
|
+
|
|
5719
|
+
// types/shared/cDragonPerkInfo.ts
|
|
5720
|
+
var cDragonPerkInfo = class {
|
|
5721
|
+
constructor() {
|
|
5722
|
+
this.id = 0;
|
|
5723
|
+
this.name = "";
|
|
5724
|
+
this.iconPath = "";
|
|
5725
|
+
}
|
|
5726
|
+
};
|
|
5727
|
+
|
|
5728
|
+
// types/shared/championAbilityData.ts
|
|
5729
|
+
var championAbilityData = class {
|
|
5730
|
+
constructor() {
|
|
5731
|
+
this.spellName = "";
|
|
5732
|
+
this.iconAsset = "";
|
|
5733
|
+
this.iconName = "";
|
|
5734
|
+
this.nativeBinHash = 0;
|
|
5735
|
+
}
|
|
5736
|
+
};
|
|
5737
|
+
|
|
5738
|
+
// types/shared/championData.ts
|
|
5739
|
+
var championData = class {
|
|
5740
|
+
constructor() {
|
|
5741
|
+
this.id = 0;
|
|
5742
|
+
this.alias = "";
|
|
5743
|
+
this.name = "";
|
|
5744
|
+
this.attackSpeed = 0;
|
|
5745
|
+
this.splashCenteredImg = "";
|
|
5746
|
+
this.splashImg = "";
|
|
5747
|
+
this.loadingImg = "";
|
|
5748
|
+
this.squareImg = "";
|
|
5749
|
+
this.tileImg = "";
|
|
5750
|
+
this.spells = [];
|
|
5751
|
+
this.skins = {};
|
|
5752
|
+
}
|
|
5753
|
+
};
|
|
5754
|
+
|
|
5755
|
+
// types/shared/championSkinInfo.ts
|
|
5756
|
+
var championSkinInfo = class {
|
|
5757
|
+
constructor() {
|
|
5758
|
+
this.name = "";
|
|
5759
|
+
this.splashCenteredUrl = "";
|
|
5760
|
+
this.splashUrl = "";
|
|
5761
|
+
this.loadingUrl = "";
|
|
5762
|
+
this.tileUrl = "";
|
|
5763
|
+
}
|
|
5764
|
+
};
|
|
5765
|
+
|
|
5766
|
+
// types/shared/championStatistics.ts
|
|
5767
|
+
var championStatistics = class {
|
|
5768
|
+
constructor() {
|
|
5769
|
+
this.winRate = 0;
|
|
5770
|
+
this.pickRate = 0;
|
|
5771
|
+
this.banRate = 0;
|
|
5772
|
+
}
|
|
5773
|
+
};
|
|
5774
|
+
|
|
5775
|
+
// types/shared/gameWithTeams.ts
|
|
5776
|
+
var gameWithTeams = class {
|
|
5777
|
+
constructor() {
|
|
5778
|
+
this.teams = [];
|
|
5779
|
+
this.gameId = 0;
|
|
5780
|
+
this.matchId = 0;
|
|
5781
|
+
this.gameNumber = 0;
|
|
5782
|
+
this.isActive = false;
|
|
5783
|
+
this.isComplete = false;
|
|
5784
|
+
this.ruleSet = 0 /* Standard */;
|
|
5785
|
+
this.patch = "";
|
|
5786
|
+
this.gameVersion = "0.0.0";
|
|
5787
|
+
this.assetPatch = "0.0.0";
|
|
5788
|
+
}
|
|
5789
|
+
};
|
|
5790
|
+
|
|
5791
|
+
// types/shared/ingameTelemetry.ts
|
|
5792
|
+
var ingameTelemetry = class {
|
|
5793
|
+
constructor() {
|
|
5794
|
+
this.totalUpdateTimeInMs = 0;
|
|
5795
|
+
this.stateTransitionProcessingTimeInMs = 0;
|
|
5796
|
+
}
|
|
5797
|
+
};
|
|
5798
|
+
|
|
5799
|
+
// types/shared/itemAsset.ts
|
|
5800
|
+
var itemAsset = class {
|
|
5801
|
+
constructor() {
|
|
5802
|
+
this.id = 0;
|
|
5803
|
+
this.name = "";
|
|
5804
|
+
this.assetUrl = "";
|
|
5805
|
+
this.gameTime = 0;
|
|
5806
|
+
}
|
|
5807
|
+
};
|
|
5808
|
+
|
|
5809
|
+
// types/shared/matchWithGamesAndTeams.ts
|
|
5810
|
+
var matchWithGamesAndTeams = class {
|
|
5811
|
+
constructor() {
|
|
5812
|
+
this.games = [];
|
|
5813
|
+
this.teams = [];
|
|
5814
|
+
this.matchId = 0;
|
|
5815
|
+
this.seasonId = 0;
|
|
5816
|
+
this.isActive = false;
|
|
5817
|
+
this.type = 1 /* BestOf1 */;
|
|
5818
|
+
this.ruleSet = 0 /* Standard */;
|
|
5819
|
+
this.onStage = false;
|
|
5820
|
+
}
|
|
5821
|
+
};
|
|
5822
|
+
|
|
5823
|
+
// types/shared/perkData.ts
|
|
5824
|
+
var perkData = class {
|
|
5825
|
+
constructor() {
|
|
5826
|
+
this.perks = [];
|
|
5827
|
+
}
|
|
5828
|
+
};
|
|
5829
|
+
|
|
5830
|
+
// types/shared/perkInfoV2.ts
|
|
5831
|
+
var perkInfoV2 = class {
|
|
5832
|
+
constructor() {
|
|
5833
|
+
this.id = 0;
|
|
5834
|
+
this.name = "";
|
|
5835
|
+
this.iconPath = "";
|
|
5836
|
+
}
|
|
5837
|
+
};
|
|
5838
|
+
|
|
5839
|
+
// types/shared/perkStyleInfoV2.ts
|
|
5840
|
+
var perkStyleInfoV2 = class {
|
|
5841
|
+
constructor() {
|
|
5842
|
+
this.id = 0;
|
|
5843
|
+
this.name = "";
|
|
5844
|
+
this.iconPath = "";
|
|
5845
|
+
}
|
|
5846
|
+
};
|
|
5847
|
+
|
|
5848
|
+
// types/shared/runeStyle.ts
|
|
5849
|
+
var runeStyle = class {
|
|
5850
|
+
constructor() {
|
|
5851
|
+
this.treeId = 0;
|
|
5852
|
+
}
|
|
5853
|
+
};
|
|
5854
|
+
|
|
5855
|
+
// types/shared/seasonData.ts
|
|
5856
|
+
var seasonData = class {
|
|
5857
|
+
constructor() {
|
|
5858
|
+
this.seasonId = 0;
|
|
5859
|
+
this.seasonName = "";
|
|
5860
|
+
this.isActive = false;
|
|
5861
|
+
}
|
|
5862
|
+
};
|
|
5863
|
+
|
|
5864
|
+
// types/shared/simpleChampionData.ts
|
|
5865
|
+
var simpleChampionData = class {
|
|
5866
|
+
constructor() {
|
|
5867
|
+
this.id = 0;
|
|
5868
|
+
this.alias = "";
|
|
5869
|
+
this.name = "";
|
|
5870
|
+
this.splashCenteredImg = "";
|
|
5871
|
+
this.splashImg = "";
|
|
5872
|
+
this.loadingImg = "";
|
|
5873
|
+
this.squareImg = "";
|
|
5874
|
+
this.tileImg = "";
|
|
5875
|
+
}
|
|
5876
|
+
};
|
|
5877
|
+
|
|
5878
|
+
// types/shared/spellClassification.ts
|
|
5879
|
+
var SpellClassification = /* @__PURE__ */ ((SpellClassification2) => {
|
|
5880
|
+
SpellClassification2[SpellClassification2["Ability"] = 0] = "Ability";
|
|
5881
|
+
SpellClassification2[SpellClassification2["Passive"] = 1] = "Passive";
|
|
5882
|
+
SpellClassification2[SpellClassification2["BasicAttack"] = 2] = "BasicAttack";
|
|
5883
|
+
SpellClassification2[SpellClassification2["CritAttack"] = 3] = "CritAttack";
|
|
5884
|
+
return SpellClassification2;
|
|
5885
|
+
})(SpellClassification || {});
|
|
5886
|
+
|
|
5887
|
+
// types/shared/summonerSpellData.ts
|
|
5888
|
+
var summonerSpellData = class {
|
|
5889
|
+
constructor() {
|
|
5890
|
+
this.name = "";
|
|
5891
|
+
this.spellIcon = "";
|
|
5892
|
+
this.localAsset = "";
|
|
5893
|
+
}
|
|
5894
|
+
};
|
|
5895
|
+
|
|
5896
|
+
// types/shared/summonerSpellInfoV2.ts
|
|
5897
|
+
var summonerSpellInfoV2 = class {
|
|
5898
|
+
constructor() {
|
|
5899
|
+
this.id = 0;
|
|
5900
|
+
this.name = "";
|
|
5901
|
+
this.iconPath = "";
|
|
5902
|
+
this.iconFileName = "";
|
|
5903
|
+
this.nativeBinHash = 0;
|
|
5904
|
+
this.spellName = "";
|
|
5905
|
+
this.iconAsset = "";
|
|
5906
|
+
}
|
|
5907
|
+
};
|
|
5908
|
+
|
|
5909
|
+
// types/shared/teamData.ts
|
|
5910
|
+
var teamData = class {
|
|
5911
|
+
constructor() {
|
|
5912
|
+
this.teamId = 0;
|
|
5913
|
+
this.name = "";
|
|
5914
|
+
this.tag = "";
|
|
5915
|
+
this.isActive = false;
|
|
5916
|
+
this.primaryColor = 0;
|
|
5917
|
+
this.secondaryColor = 0;
|
|
5918
|
+
this.tertiaryColor = 0;
|
|
5919
|
+
this.backgroundColor = 0;
|
|
5920
|
+
}
|
|
5921
|
+
};
|
|
5922
|
+
|
|
5923
|
+
// types/shared/teamMemberRole.ts
|
|
5924
|
+
var TeamMemberRole = /* @__PURE__ */ ((TeamMemberRole2) => {
|
|
5925
|
+
TeamMemberRole2[TeamMemberRole2["Unknown"] = 0] = "Unknown";
|
|
5926
|
+
TeamMemberRole2[TeamMemberRole2["Player"] = 1] = "Player";
|
|
5927
|
+
TeamMemberRole2[TeamMemberRole2["Coach"] = 2] = "Coach";
|
|
5928
|
+
TeamMemberRole2[TeamMemberRole2["Manager"] = 3] = "Manager";
|
|
5929
|
+
TeamMemberRole2[TeamMemberRole2["Analyst"] = 4] = "Analyst";
|
|
5930
|
+
TeamMemberRole2[TeamMemberRole2["Substitute"] = 5] = "Substitute";
|
|
5931
|
+
return TeamMemberRole2;
|
|
5932
|
+
})(TeamMemberRole || {});
|
|
5933
|
+
|
|
5934
|
+
// types/shared/teamMember.ts
|
|
5935
|
+
var teamMember = class {
|
|
5936
|
+
constructor() {
|
|
5937
|
+
this.memberId = 0;
|
|
5938
|
+
this.teamId = 0;
|
|
5939
|
+
this.alias = "";
|
|
5940
|
+
this.puuid = "";
|
|
5941
|
+
this.isActive = false;
|
|
5942
|
+
this.tag = "";
|
|
5943
|
+
this.role = 0 /* Unknown */;
|
|
5944
|
+
this.familyName = "";
|
|
5945
|
+
this.givenName = "";
|
|
5946
|
+
}
|
|
5947
|
+
};
|
|
5948
|
+
|
|
5949
|
+
// types/shared/teamScore.ts
|
|
5950
|
+
var teamScore = class {
|
|
5951
|
+
constructor() {
|
|
5952
|
+
this.wins = 0;
|
|
5953
|
+
this.losses = 0;
|
|
5954
|
+
}
|
|
5955
|
+
};
|
|
5956
|
+
|
|
5957
|
+
// types/shared/teamWithMembers.ts
|
|
5958
|
+
var teamWithMembers = class {
|
|
5959
|
+
constructor() {
|
|
5960
|
+
this.members = [];
|
|
5961
|
+
this.teamId = 0;
|
|
5962
|
+
this.name = "";
|
|
5963
|
+
this.tag = "";
|
|
5964
|
+
this.isActive = false;
|
|
5965
|
+
this.primaryColor = 0;
|
|
5966
|
+
this.secondaryColor = 0;
|
|
5967
|
+
this.tertiaryColor = 0;
|
|
5968
|
+
this.backgroundColor = 0;
|
|
5969
|
+
}
|
|
5970
|
+
};
|
|
5971
|
+
|
|
5972
|
+
// types/shared/style/borderStyle.ts
|
|
5973
|
+
var borderStyle = class {
|
|
5974
|
+
constructor() {
|
|
5975
|
+
this.width = "";
|
|
5976
|
+
this.style = "";
|
|
5977
|
+
this.color = "";
|
|
5978
|
+
this.radius = "";
|
|
5979
|
+
}
|
|
5980
|
+
};
|
|
5981
|
+
|
|
5982
|
+
// types/shared/style/championIconType.ts
|
|
5983
|
+
var ChampionIconType = /* @__PURE__ */ ((ChampionIconType2) => {
|
|
5984
|
+
ChampionIconType2[ChampionIconType2["Splash"] = 0] = "Splash";
|
|
5985
|
+
ChampionIconType2[ChampionIconType2["SplashCentered"] = 1] = "SplashCentered";
|
|
5986
|
+
ChampionIconType2[ChampionIconType2["Loading"] = 2] = "Loading";
|
|
5987
|
+
ChampionIconType2[ChampionIconType2["Square"] = 3] = "Square";
|
|
5988
|
+
ChampionIconType2[ChampionIconType2["Tile"] = 4] = "Tile";
|
|
5989
|
+
return ChampionIconType2;
|
|
5990
|
+
})(ChampionIconType || {});
|
|
5991
|
+
|
|
5992
|
+
// types/shared/style/objectFit.ts
|
|
5993
|
+
var ObjectFit = /* @__PURE__ */ ((ObjectFit2) => {
|
|
5994
|
+
ObjectFit2[ObjectFit2["Fill"] = 0] = "Fill";
|
|
5995
|
+
ObjectFit2[ObjectFit2["Contain"] = 1] = "Contain";
|
|
5996
|
+
ObjectFit2[ObjectFit2["Cover"] = 2] = "Cover";
|
|
5997
|
+
ObjectFit2[ObjectFit2["None"] = 3] = "None";
|
|
5998
|
+
ObjectFit2[ObjectFit2["ScaleDown"] = 4] = "ScaleDown";
|
|
5999
|
+
return ObjectFit2;
|
|
6000
|
+
})(ObjectFit || {});
|
|
6001
|
+
|
|
6002
|
+
// types/shared/style/championIconStyle.ts
|
|
6003
|
+
var championIconStyle = class {
|
|
6004
|
+
constructor() {
|
|
6005
|
+
this.type = 0 /* Splash */;
|
|
6006
|
+
this.fit = 0 /* Fill */;
|
|
6007
|
+
this.zoom = 0;
|
|
6008
|
+
this.padding = "";
|
|
6009
|
+
this.margin = "";
|
|
6010
|
+
this.border = {};
|
|
6011
|
+
this.height = "";
|
|
6012
|
+
this.width = "";
|
|
6013
|
+
this.align = "";
|
|
6014
|
+
}
|
|
6015
|
+
};
|
|
6016
|
+
|
|
6017
|
+
// types/shared/style/gradientType.ts
|
|
6018
|
+
var GradientType = /* @__PURE__ */ ((GradientType2) => {
|
|
6019
|
+
GradientType2[GradientType2["Linear"] = 0] = "Linear";
|
|
6020
|
+
GradientType2[GradientType2["Radial"] = 1] = "Radial";
|
|
6021
|
+
return GradientType2;
|
|
6022
|
+
})(GradientType || {});
|
|
6023
|
+
|
|
6024
|
+
// types/shared/style/colorGradientData.ts
|
|
6025
|
+
var colorGradientData = class {
|
|
6026
|
+
constructor() {
|
|
6027
|
+
this.angle = 0;
|
|
6028
|
+
this.type = 0 /* Linear */;
|
|
6029
|
+
this.stops = [];
|
|
6030
|
+
}
|
|
6031
|
+
};
|
|
6032
|
+
|
|
6033
|
+
// types/shared/style/colorImageData.ts
|
|
6034
|
+
var colorImageData = class {
|
|
6035
|
+
constructor() {
|
|
6036
|
+
this.source = "";
|
|
6037
|
+
this.fit = "";
|
|
6038
|
+
this.repeat = "";
|
|
6039
|
+
this.position = "";
|
|
6040
|
+
}
|
|
6041
|
+
};
|
|
6042
|
+
|
|
6043
|
+
// types/shared/style/colorStop.ts
|
|
6044
|
+
var colorStop = class {
|
|
6045
|
+
constructor() {
|
|
6046
|
+
this.color = "#FFFFFF";
|
|
6047
|
+
this.position = 0;
|
|
6048
|
+
}
|
|
6049
|
+
};
|
|
6050
|
+
|
|
6051
|
+
// types/shared/style/colorStyle.ts
|
|
6052
|
+
var colorStyle = class {
|
|
6053
|
+
constructor() {
|
|
6054
|
+
this.color = "";
|
|
6055
|
+
}
|
|
6056
|
+
};
|
|
6057
|
+
|
|
6058
|
+
// types/shared/style/componentStyle.ts
|
|
6059
|
+
var componentStyle = class {
|
|
6060
|
+
constructor() {
|
|
6061
|
+
this.layout = {};
|
|
6062
|
+
this.color = "";
|
|
6063
|
+
}
|
|
6064
|
+
};
|
|
6065
|
+
|
|
6066
|
+
// types/shared/style/displayColorData.ts
|
|
6067
|
+
var displayColorData = class {
|
|
6068
|
+
constructor() {
|
|
6069
|
+
this.blueSideColor = "#FFFFFF";
|
|
6070
|
+
this.redSideColor = "#FFFFFF";
|
|
6071
|
+
this.neutralColor = "#FFFFFF";
|
|
6072
|
+
}
|
|
6073
|
+
};
|
|
6074
|
+
|
|
6075
|
+
// types/shared/style/globalPosition.ts
|
|
6076
|
+
var globalPosition = class {
|
|
6077
|
+
constructor() {
|
|
6078
|
+
this.contentAlign = 0 /* TopLeft */;
|
|
6079
|
+
this.offsetX = "";
|
|
6080
|
+
this.offsetY = "";
|
|
6081
|
+
}
|
|
6082
|
+
};
|
|
6083
|
+
|
|
6084
|
+
// types/shared/style/imageComponentStyle.ts
|
|
6085
|
+
var imageComponentStyle = class {
|
|
6086
|
+
constructor() {
|
|
6087
|
+
this.image = {};
|
|
6088
|
+
this.color = "";
|
|
6089
|
+
}
|
|
6090
|
+
};
|
|
6091
|
+
|
|
6092
|
+
// types/shared/style/imageStyle.ts
|
|
6093
|
+
var imageStyle = class {
|
|
6094
|
+
constructor() {
|
|
6095
|
+
this.fit = 0 /* Fill */;
|
|
6096
|
+
this.zoom = 0;
|
|
6097
|
+
this.padding = "";
|
|
6098
|
+
this.margin = "";
|
|
6099
|
+
this.border = {};
|
|
6100
|
+
this.height = "";
|
|
6101
|
+
this.width = "";
|
|
6102
|
+
this.align = "";
|
|
6103
|
+
}
|
|
6104
|
+
};
|
|
6105
|
+
|
|
6106
|
+
// types/shared/style/layoutStyle.ts
|
|
6107
|
+
var layoutStyle = class {
|
|
6108
|
+
constructor() {
|
|
6109
|
+
this.padding = "";
|
|
6110
|
+
this.margin = "";
|
|
6111
|
+
this.border = {};
|
|
6112
|
+
this.height = "";
|
|
6113
|
+
this.width = "";
|
|
6114
|
+
this.align = "";
|
|
6115
|
+
}
|
|
6116
|
+
};
|
|
6117
|
+
|
|
6118
|
+
// types/shared/style/text/textOrientation.ts
|
|
6119
|
+
var TextOrientation = /* @__PURE__ */ ((TextOrientation2) => {
|
|
6120
|
+
TextOrientation2[TextOrientation2["None"] = 0] = "None";
|
|
6121
|
+
TextOrientation2[TextOrientation2["Upright"] = 1] = "Upright";
|
|
6122
|
+
TextOrientation2[TextOrientation2["Sideways"] = 2] = "Sideways";
|
|
6123
|
+
return TextOrientation2;
|
|
6124
|
+
})(TextOrientation || {});
|
|
6125
|
+
|
|
6126
|
+
// types/shared/style/text/writingMode.ts
|
|
6127
|
+
var WritingMode = /* @__PURE__ */ ((WritingMode2) => {
|
|
6128
|
+
WritingMode2[WritingMode2["None"] = 0] = "None";
|
|
6129
|
+
WritingMode2[WritingMode2["Horizontal"] = 1] = "Horizontal";
|
|
6130
|
+
WritingMode2[WritingMode2["VerticalL"] = 2] = "VerticalL";
|
|
6131
|
+
WritingMode2[WritingMode2["VerticalR"] = 3] = "VerticalR";
|
|
6132
|
+
return WritingMode2;
|
|
6133
|
+
})(WritingMode || {});
|
|
6134
|
+
|
|
6135
|
+
// types/shared/style/optionalTextStyle.ts
|
|
6136
|
+
var optionalTextStyle = class {
|
|
6137
|
+
constructor() {
|
|
6138
|
+
this.show = false;
|
|
6139
|
+
this.fontFamily = "";
|
|
6140
|
+
this.fontWeight = "";
|
|
6141
|
+
this.fontSize = "";
|
|
6142
|
+
this.textAlignment = "";
|
|
6143
|
+
this.textColor = "";
|
|
6144
|
+
this.overrideCommonFontFamily = false;
|
|
6145
|
+
this.textOrientation = 0 /* None */;
|
|
6146
|
+
this.writingMode = 0 /* None */;
|
|
6147
|
+
}
|
|
6148
|
+
};
|
|
6149
|
+
|
|
6150
|
+
// types/shared/style/teamColorType.ts
|
|
6151
|
+
var TeamColorType = /* @__PURE__ */ ((TeamColorType2) => {
|
|
6152
|
+
TeamColorType2[TeamColorType2["Primary"] = 0] = "Primary";
|
|
6153
|
+
TeamColorType2[TeamColorType2["Secondary"] = 1] = "Secondary";
|
|
6154
|
+
TeamColorType2[TeamColorType2["Tertiary"] = 2] = "Tertiary";
|
|
6155
|
+
return TeamColorType2;
|
|
6156
|
+
})(TeamColorType || {});
|
|
6157
|
+
|
|
6158
|
+
// types/shared/style/textOutline.ts
|
|
6159
|
+
var textOutline = class {
|
|
6160
|
+
constructor() {
|
|
6161
|
+
this.color = "";
|
|
6162
|
+
this.strength = "";
|
|
6163
|
+
}
|
|
6164
|
+
};
|
|
6165
|
+
|
|
6166
|
+
// types/shared/style/textStyle.ts
|
|
6167
|
+
var textStyle = class {
|
|
6168
|
+
constructor() {
|
|
6169
|
+
this.fontFamily = "";
|
|
6170
|
+
this.fontWeight = "";
|
|
6171
|
+
this.fontSize = "";
|
|
6172
|
+
this.textAlignment = "";
|
|
6173
|
+
this.textColor = "";
|
|
6174
|
+
this.overrideCommonFontFamily = false;
|
|
6175
|
+
this.textOrientation = 0 /* None */;
|
|
6176
|
+
this.writingMode = 0 /* None */;
|
|
6177
|
+
}
|
|
6178
|
+
};
|
|
6179
|
+
|
|
6180
|
+
// types/shared/style/set/globalStyleProperties.ts
|
|
6181
|
+
var globalStyleProperties = class {
|
|
6182
|
+
constructor() {
|
|
6183
|
+
this.playerFullNameDisplayFormat = "";
|
|
6184
|
+
this.color = {};
|
|
6185
|
+
this.fontFamily = "";
|
|
6186
|
+
}
|
|
6187
|
+
};
|
|
6188
|
+
|
|
6189
|
+
// types/shared/style/set/styleSet.ts
|
|
6190
|
+
var styleSet = class {
|
|
6191
|
+
constructor() {
|
|
6192
|
+
this.uri = "";
|
|
6193
|
+
this.name = "";
|
|
6194
|
+
this.globalProperties = {};
|
|
6195
|
+
this.phase = 0 /* Pre */;
|
|
6196
|
+
this.isValid = false;
|
|
6197
|
+
}
|
|
6198
|
+
};
|
|
6199
|
+
|
|
6200
|
+
// types/shared/style/set/styleSetEntry.ts
|
|
6201
|
+
var styleSetEntry = class {
|
|
6202
|
+
constructor() {
|
|
6203
|
+
this.variant = "";
|
|
6204
|
+
this.category = "";
|
|
6205
|
+
this.isActive = false;
|
|
6206
|
+
}
|
|
6207
|
+
};
|
|
6208
|
+
|
|
6209
|
+
// types/shared/style/set/styleSetNameCollection.ts
|
|
6210
|
+
var styleSetNameCollection = class {
|
|
6211
|
+
constructor() {
|
|
6212
|
+
this.preset = [];
|
|
6213
|
+
this.custom = [];
|
|
6214
|
+
}
|
|
6215
|
+
};
|
|
6216
|
+
|
|
6217
|
+
// types/shared/window/appTheme.ts
|
|
6218
|
+
var AppTheme = /* @__PURE__ */ ((AppTheme2) => {
|
|
6219
|
+
AppTheme2[AppTheme2["Light"] = 0] = "Light";
|
|
6220
|
+
AppTheme2[AppTheme2["Dark"] = 1] = "Dark";
|
|
6221
|
+
AppTheme2[AppTheme2["System"] = 2] = "System";
|
|
6222
|
+
return AppTheme2;
|
|
6223
|
+
})(AppTheme || {});
|
|
6224
|
+
|
|
6225
|
+
// types/shared/window/windowType.ts
|
|
6226
|
+
var WindowType = /* @__PURE__ */ ((WindowType2) => {
|
|
6227
|
+
WindowType2[WindowType2["Main"] = 0] = "Main";
|
|
6228
|
+
WindowType2[WindowType2["Startup"] = 1] = "Startup";
|
|
6229
|
+
WindowType2[WindowType2["Login"] = 2] = "Login";
|
|
6230
|
+
WindowType2[WindowType2["Settings"] = 3] = "Settings";
|
|
6231
|
+
WindowType2[WindowType2["Drawing"] = 4] = "Drawing";
|
|
6232
|
+
return WindowType2;
|
|
6233
|
+
})(WindowType || {});
|
|
6234
|
+
|
|
6235
|
+
// types/twitch/chatVoteResult/chatVoteOption.ts
|
|
6236
|
+
var chatVoteOption = class {
|
|
6237
|
+
constructor() {
|
|
6238
|
+
this.votes = 0;
|
|
6239
|
+
}
|
|
6240
|
+
};
|
|
6241
|
+
|
|
6242
|
+
// types/twitch/chatVoteResult/chatVoteResultDto.ts
|
|
6243
|
+
var chatVoteResultDto = class {
|
|
6244
|
+
constructor() {
|
|
6245
|
+
this.active = false;
|
|
6246
|
+
}
|
|
6247
|
+
};
|
|
6248
|
+
|
|
6249
|
+
// types/twitch/CreatePoll/createChoice.ts
|
|
6250
|
+
var createChoice = class {
|
|
6251
|
+
};
|
|
6252
|
+
|
|
6253
|
+
// types/twitch/CreatePoll/createPollDto.ts
|
|
6254
|
+
var createPollDto = class {
|
|
6255
|
+
constructor() {
|
|
6256
|
+
this.duration = 0;
|
|
6257
|
+
}
|
|
6258
|
+
};
|
|
6259
|
+
|
|
6260
|
+
// types/twitch/createPrediction/createPredictionDto.ts
|
|
6261
|
+
var createPredictionDto = class {
|
|
6262
|
+
constructor() {
|
|
6263
|
+
this.predictionWindow = 0;
|
|
6264
|
+
}
|
|
6265
|
+
};
|
|
6266
|
+
|
|
6267
|
+
// types/twitch/createPrediction/predictionOutcomeRequest.ts
|
|
6268
|
+
var predictionOutcomeRequest = class {
|
|
6269
|
+
};
|
|
6270
|
+
|
|
6271
|
+
// types/twitch/EndPoll/endPollDto.ts
|
|
6272
|
+
var endPollDto = class {
|
|
6273
|
+
};
|
|
6274
|
+
|
|
6275
|
+
// types/twitch/endPrediction/endPredictionDto.ts
|
|
6276
|
+
var endPredictionDto = class {
|
|
6277
|
+
};
|
|
6278
|
+
|
|
6279
|
+
// types/twitch/startChatVote/startChatVoteDto.ts
|
|
6280
|
+
var startChatVoteDto = class {
|
|
6281
|
+
};
|
|
6282
|
+
|
|
6283
|
+
// types/twitch/status/twitchStatusDTO.ts
|
|
6284
|
+
var twitchStatusDTO = class {
|
|
6285
|
+
constructor() {
|
|
6286
|
+
this.connected = false;
|
|
6287
|
+
}
|
|
6288
|
+
};
|
|
6289
|
+
|
|
6290
|
+
// src/util/ingameScoreboardBottomPlayerDataUtils.ts
|
|
6291
|
+
function getSortedInventory(playerData) {
|
|
6292
|
+
if (!playerData.items) return Array(6).fill({ id: 0 });
|
|
6293
|
+
const items = playerData.items?.filter((item) => item.slot < 6) ?? [];
|
|
6294
|
+
const regularItems = items.sort(
|
|
6295
|
+
(a, b) => (a?.cost ?? 0) - (b?.cost ?? 0)
|
|
6296
|
+
);
|
|
6297
|
+
while (regularItems.length < 6) {
|
|
6298
|
+
regularItems.unshift(void 0);
|
|
6299
|
+
}
|
|
6300
|
+
return regularItems ?? [];
|
|
6301
|
+
}
|
|
6302
|
+
function getTrinket(playerData) {
|
|
6303
|
+
return playerData.items?.find((item) => item.slot === 6);
|
|
6304
|
+
}
|
|
6305
|
+
function getRoleQuest(playerData) {
|
|
6306
|
+
return playerData.items?.find((item) => item.slot === 8);
|
|
6307
|
+
}
|
|
6308
|
+
|
|
6309
|
+
// src/util/damageRecapUtils.ts
|
|
6310
|
+
var PHYS_COLOR = "#E84057";
|
|
6311
|
+
var MAGIC_COLOR = "#5383E8";
|
|
6312
|
+
var TRUE_COLOR = "#F0E6D3";
|
|
6313
|
+
function dmgTypeColor(type) {
|
|
6314
|
+
const normalized = typeof type === "string" ? type.toLowerCase() : type;
|
|
6315
|
+
if (normalized === 0 /* Physical */ || normalized === "physical")
|
|
6316
|
+
return PHYS_COLOR;
|
|
6317
|
+
if (normalized === 1 /* Magic */ || normalized === "magic")
|
|
6318
|
+
return MAGIC_COLOR;
|
|
6319
|
+
if (normalized === 2 /* True */ || normalized === "true")
|
|
6320
|
+
return TRUE_COLOR;
|
|
6321
|
+
return "#888";
|
|
6322
|
+
}
|
|
6323
|
+
function formatDamage(value) {
|
|
6324
|
+
return value >= 1e3 ? `${(value / 1e3).toFixed(1)}k` : `${Math.round(value)}`;
|
|
6325
|
+
}
|
|
6326
|
+
function getDamageByType(map, key) {
|
|
6327
|
+
return map[key] ?? map[key.toLowerCase()] ?? 0;
|
|
6328
|
+
}
|
|
6329
|
+
function damageBarSegments(damageByType, total) {
|
|
6330
|
+
const t = total || 1;
|
|
6331
|
+
return [
|
|
6332
|
+
{
|
|
6333
|
+
color: PHYS_COLOR,
|
|
6334
|
+
pct: getDamageByType(damageByType, "Physical") / t * 100
|
|
6335
|
+
},
|
|
6336
|
+
{
|
|
6337
|
+
color: MAGIC_COLOR,
|
|
6338
|
+
pct: getDamageByType(damageByType, "Magic") / t * 100
|
|
6339
|
+
},
|
|
6340
|
+
{
|
|
6341
|
+
color: TRUE_COLOR,
|
|
6342
|
+
pct: getDamageByType(damageByType, "True") / t * 100
|
|
6343
|
+
}
|
|
6344
|
+
].filter((s) => s.pct > 0.5);
|
|
6345
|
+
}
|
|
6346
|
+
function aggregateSpellEntries(spells) {
|
|
6347
|
+
const agg = /* @__PURE__ */ new Map();
|
|
6348
|
+
for (const s of spells) {
|
|
6349
|
+
if (!s.spellData) continue;
|
|
6350
|
+
const classification = s.spellData.classification;
|
|
6351
|
+
let groupKey;
|
|
6352
|
+
if (classification === 2 /* BasicAttack */) {
|
|
6353
|
+
groupKey = "__autoattack__";
|
|
6354
|
+
} else if (classification === 3 /* CritAttack */) {
|
|
6355
|
+
groupKey = "__critattack__";
|
|
6356
|
+
} else {
|
|
6357
|
+
groupKey = s.spellData.iconAsset || s.spellData.spellName;
|
|
6358
|
+
}
|
|
6359
|
+
const key = `${groupKey}::${s.damageType}`;
|
|
6360
|
+
const existing = agg.get(key);
|
|
6361
|
+
if (existing) {
|
|
6362
|
+
existing.damage += s.damage;
|
|
6363
|
+
} else {
|
|
6364
|
+
agg.set(key, {
|
|
6365
|
+
spellData: s.spellData,
|
|
6366
|
+
damage: s.damage,
|
|
6367
|
+
damageType: s.damageType
|
|
6368
|
+
});
|
|
6369
|
+
}
|
|
6370
|
+
}
|
|
6371
|
+
return [...agg.values()].sort((a, b) => b.damage - a.damage);
|
|
6372
|
+
}
|
|
6373
|
+
function classifySpecialEntity(name) {
|
|
6374
|
+
if (/baron/i.test(name)) {
|
|
6375
|
+
return {
|
|
6376
|
+
key: "__baron__",
|
|
6377
|
+
displayName: "Baron Nashor",
|
|
6378
|
+
entityType: "baron"
|
|
6379
|
+
};
|
|
6380
|
+
}
|
|
6381
|
+
if (/^minion_t/i.test(name)) {
|
|
6382
|
+
const isOrder = /^minion_t1/i.test(name);
|
|
6383
|
+
return {
|
|
6384
|
+
key: isOrder ? "__minion_order__" : "__minion_chaos__",
|
|
6385
|
+
displayName: "Minions",
|
|
6386
|
+
entityType: "minion"
|
|
6387
|
+
};
|
|
6388
|
+
}
|
|
6389
|
+
if (/^turret_t/i.test(name)) {
|
|
6390
|
+
const isOrder = /^turret_torder/i.test(name);
|
|
6391
|
+
return {
|
|
6392
|
+
key: isOrder ? "__turret_order__" : "__turret_chaos__",
|
|
6393
|
+
displayName: "Turrets",
|
|
6394
|
+
entityType: "turret"
|
|
6395
|
+
};
|
|
6396
|
+
}
|
|
6397
|
+
return null;
|
|
6398
|
+
}
|
|
6399
|
+
function normalizeDamageEntries(entries, limit = 5) {
|
|
6400
|
+
const grouped = /* @__PURE__ */ new Map();
|
|
6401
|
+
const pendingSpells = /* @__PURE__ */ new Map();
|
|
6402
|
+
for (const entry of entries) {
|
|
6403
|
+
const special = classifySpecialEntity(entry.sourceName);
|
|
6404
|
+
if (special) {
|
|
6405
|
+
const existing = grouped.get(special.key);
|
|
6406
|
+
if (existing) {
|
|
6407
|
+
existing.totalDamage += entry.totalDamage;
|
|
6408
|
+
for (const [k, v] of Object.entries(entry.damageByType)) {
|
|
6409
|
+
existing.damageByType[k] = (existing.damageByType[k] ?? 0) + v;
|
|
6410
|
+
}
|
|
6411
|
+
} else {
|
|
6412
|
+
grouped.set(special.key, {
|
|
6413
|
+
key: special.key,
|
|
6414
|
+
displayName: special.displayName,
|
|
6415
|
+
entityType: special.entityType,
|
|
6416
|
+
totalDamage: entry.totalDamage,
|
|
6417
|
+
damageByType: { ...entry.damageByType },
|
|
6418
|
+
spells: []
|
|
6419
|
+
});
|
|
6420
|
+
}
|
|
6421
|
+
} else if (!entry.sourceName.includes(".")) {
|
|
6422
|
+
grouped.set(entry.sourceName, {
|
|
6423
|
+
key: entry.sourceName,
|
|
6424
|
+
displayName: entry.source?.name ?? entry.sourceName,
|
|
6425
|
+
squareImg: entry.source?.squareImg,
|
|
6426
|
+
entityType: "champion",
|
|
6427
|
+
totalDamage: entry.totalDamage,
|
|
6428
|
+
damageByType: { ...entry.damageByType },
|
|
6429
|
+
spells: aggregateSpellEntries(entry.spells)
|
|
6430
|
+
});
|
|
6431
|
+
} else {
|
|
6432
|
+
const baseName = entry.sourceName.split(".")[0].replace(/_\d+$/, "").replace(/^SRU_/i, "");
|
|
6433
|
+
const existing = grouped.get(baseName);
|
|
6434
|
+
if (existing) {
|
|
6435
|
+
existing.totalDamage += entry.totalDamage;
|
|
6436
|
+
for (const [k, v] of Object.entries(entry.damageByType)) {
|
|
6437
|
+
existing.damageByType[k] = (existing.damageByType[k] ?? 0) + v;
|
|
6438
|
+
}
|
|
6439
|
+
} else {
|
|
6440
|
+
grouped.set(baseName, {
|
|
6441
|
+
key: baseName,
|
|
6442
|
+
displayName: baseName,
|
|
6443
|
+
squareImg: entry.source?.squareImg,
|
|
6444
|
+
entityType: "monster",
|
|
6445
|
+
totalDamage: entry.totalDamage,
|
|
6446
|
+
damageByType: { ...entry.damageByType },
|
|
6447
|
+
spells: []
|
|
6448
|
+
});
|
|
6449
|
+
}
|
|
6450
|
+
const pending = pendingSpells.get(baseName) ?? [];
|
|
6451
|
+
pending.push(...entry.spells);
|
|
6452
|
+
pendingSpells.set(baseName, pending);
|
|
6453
|
+
}
|
|
6454
|
+
}
|
|
6455
|
+
for (const [key, spells] of pendingSpells) {
|
|
6456
|
+
const entry = grouped.get(key);
|
|
6457
|
+
if (entry) entry.spells = aggregateSpellEntries(spells);
|
|
6458
|
+
}
|
|
6459
|
+
return [...grouped.values()].sort((a, b) => b.totalDamage - a.totalDamage).slice(0, limit);
|
|
1608
6460
|
}
|
|
1609
6461
|
|
|
1610
|
-
export { ActionSubType, ActionType, ApiClient, ApiError, BestOfType, ChampSelectStateStore, GameApi, GameState, GameStateApi, GameStateStore, IngameApi, LeagueBroadcastClient, MatchApi, MatchRuleSet, PickBanPhase, PreGameApi, RestApi, SeasonApi, TimeLineActionType, WebSocketManager, getRoleQuest, getSortedInventory, getTrinket, shallowEqual };
|
|
6462
|
+
export { ActionSubType, ActionType, AnnouncementType, ApiClient, ApiError, AppTheme, AssetType, BestOfType, CacheOperation, CampLocation, ChampSelectStateStore, ChampionIconType, CombinedViewTransitionType, ContentAlign, DamageEventType, DamageSplitMode, DamageType, DatabaseUpdateType, GameApi, GameState, GameStateApi, GameStateStore, GradientType, HeroStatsDisplayMode, IngameApi, IngameObjectiveType, IngameSideInfoPageType, Interval, Lane, LeagueBroadcastClient, MAGIC_COLOR, MatchApi, MatchRuleSet, ObjectFit, ObjectiveEventType, ObjectiveRecapDisplayMode, PHYS_COLOR, PaymentInterval, PickBanPhase, PostGameDataType, damageBarStyle2 as PostgameDamageBarStyle, PreGameApi, divider2 as PregameDivider, ResourceType, RestApi, ScoreDisplayMode, ScoreDotBorderMode, SeasonApi, SetPhaseType, SpellClassification, SpellSlotIndex, StrokeLayer, StrokeLineStyle, StrokeTipStyle, TRUE_COLOR, Team, TeamColorType, TeamMemberRole, TextOrientation, Tier, TimeLineActionType, TransitionType, WebSocketManager, WindowType, WritingMode, activeComponentChangedEventArgs, activeComponentChangedMessage, addMatchRequestArgs, aggregateSpellEntries, announcementParameter, announcerColors, announcerEvent, announcerUniversalStyle, applicationLifetimeMessage, applicationNotificationCompletedMessage, applicationNotificationMessage, banSlot, banSlotLayoutStyling, banStyle, barStyle, billingCycle, borderStyle, bottomRowPickBanStyle, bottomRowSizeStyle, bottomRowTeamStyle, bottomRowTournamentData, cDragonPerkInfo, casterModeConfigDto, centerContent, centerContentLayoutStyling, centerContentStyling, champSelectActionMessage, champSelectStateData, champSelectStateMessage, champSelectStateMetaData, champSelectStatePerformanceData, championAbilityData, championContainer, championData, championIamgeStyle, championIconStyle, championImage, championImageStyle, championSelectEUStyle, championSelectTeam, championSkinInfo, championSlot, championStackStyle, championStatistics, championStats, championStatsContainer, championStatusStyle, championTabContainerStyle, championTabNameStyle, championTabsStyle, championUltimateStyle, championsSlot, changeDetectionResponse, chatVoteOption, chatVoteResultDto, checkoutCompleteResponse, checkoutRequestDTO, choiceBar, choiceTitel, choiceVotes, cloudStyleSetDownloadResponse, cloudStyleSetMetadata, cloudStyleSetUploadRequest, cloudStyleSetUploadResponse, cloudStyleSetsResponse, cloudSyncConfig, cloudSyncResult, coachSlot, colorByDamageType, colorComponentStyling, colorGradientData, colorImageData, colorRGBA, colorStop, colorStyle, colorStyling, combinedViewStyle, combinedViewTransitionStyle, communityDragonCacheProgressMessage, communityDragonV2ProgressMessage, communityDragonV2StatusMessage, componentStyle, contentContainerStyle, createChoice, createPollDto, createPredictionDto, creepScore, curveStyle, damageBarSegments, damageBarStyle, damageCompositionBarStyle, damageCompositionColors, damageCompositionDonutStyle, damageCompositionPlayer, damageCompositionStyle, damageCompositionTeam, damageDealtStyle, damageEventHistoryEntry, damageEventHistoryUpdateMessage, damageFlow, damageFlowEdge, damageFlowNode, damageFlowNodeStyle, damageFlowRibbonStyle, damageGraphEntry, damageGraphSide, damageRecapDamageBarStyle, damageRecapEntry, damageRecapEntryStyle, damageRecapSpellEntry, damageRecapStyle, damageRecapTimelineEntry, damageSplitBarStyle, damageSplitEntryStyle, damageSplitSpellEntry, damageSplitStyle, damageSplitTargetEntry, damageStatsStyle, displayColorData, divider, dmgTypeColor, endPollDto, endPredictionDto, fearLessByGame, fearLessSingleRow, fearlessChampionImage, fearlessDraftStyle, fearlessDraftStylePregame, fearlessTree, fearlessTreeBanRowStyle, fearlessTreeConnectorStyle, fearlessTreeGameNodeStyle, fearlessTreeHeaderStyle, fontsChangedMessage, formatDamage, frontendRouteUpdateMessage, fullPlayerScoreboardSlots, gameAnalysis, gameDatabaseUpdateMessage, gameInfoRotation, gameStatusMessage, gameTimer, gameTimerStyle, gameWithTeams, getDamageByType, getRoleQuest, getSortedInventory, getTrinket, globalPosition, globalScoreboard, globalScoreboardBooleanIndicator, globalScoreboardSection, globalStyleProperties, goldAdvantage, goldEfficiencyEntry, goldEfficiencyHeaderStyle, goldEfficiencyHeatStyle, goldEfficiencyPlayerRowStyle, goldEfficiencyStyle, goldGraph, goldGraphStyle, gridLineStyle, headline, healthBarStyle, hotkeyFiredMessage, imageComponentStyle, imageStyle, infoContentColorStyling, infoContentLayoutStyling, infoContentTextStyle, infoRow, ingameAbilityInfo, ingameDamageCompositionData, ingameDamageFlowData, ingameDamageGraphData, ingameDamageRecapData, ingameDamageSplitData, ingameExperienceData, ingameFrontendData, ingameGoldEfficiencyData, ingameGoldGraphData, ingameHealthData, ingameKillParticipationData, ingameObjectiveDpsData, ingameObjectiveEvent, ingameObjectivePowerPlay, ingameResourceData, ingameRewindMessage, ingameRuneData, ingameScoreboardBottomData, ingameScoreboardBottomPlayerData, ingameScoreboardBottomTeamData, ingameScoreboardData, ingameScoreboardTeamData, ingameSideInfoPage, ingameSideInfoPageDisplayData, ingameSideInfoPageRow, ingameSingleRuneData, ingameSkinDisplayData, ingameSkinDisplayPlayerData, ingameSkinDisplayTeamData, ingameStateMessage, ingameStateSettingsWrapper, ingameTeamfightTimelineData, ingameTelemetry, ingameTelemetryMessage, inhibitorRespawnData, inhibitorTimer, inhibitorTimerContainer, inhibitorTimerDual, inhibitorTimerIconContainer, inhibitorTimerSingle, inhibitorTimerTimerContainer, itemAsset, itemIcon, itemSlot, itemStats, itemWithAsset, killFeed, killFeedAssistersStyle, killFeedContainerStyle, killFeedEntryStyle, killFeedEvent, killFeedIconStyle, killFeedKillIconStyle, killParticipationLink, killParticipationPlayer, killParticipationStyle, lFrameRotation, laneIconStyle, laneRowLayoutStyle, layoutComponentStyling, layoutStyle, legacyPickBanStyle, levelXpTrackerStyle, lineStyle, localSyncState, localizedPriceData, matchCardStyle, matchData, matchDatabaseUpdateMessage, matchOverviewData, matchOverviewGameSummary, matchOverviewTeamSummary, matchSummaryStyle, matchWithGamesAndTeams, matchupGridStyle, matchupHeaderStyle, matchupOverview, matchupOverviewGameRowStyle, matchupOverviewHeaderStyle, matchupOverviewTeamBarStyle, matchupScoreStyle, matchupTable, matchupTableContentStyle, matchupVersusStyle, normalizeDamageEntries, numberContainerStyle, objectiveDamagePerTeamStyle, objectiveDpsBarStyle, objectiveDpsHeaderStyle, objectiveDpsSample, objectiveDpsSmiteStrip, objectiveDpsTeamNumbersStyle, objectiveList, objectiveRecapCardStyle, objectiveRecapHeaderStyle, objectiveRecapSmiteBarStyle, objectiveRecapStyle, objectiveTimer, optionBar, optionTitel, optionVotes, optionalMatchData, optionalTextStyle, partialStrokeProperties, perkData, perkInfoV2, perkStyleInfoV2, phaseTimer, phaseTimerColorStyling, phaseTimerLayoutStyling, pickBanActionEventArgs, pickBanTimer, pickBans, pickSlot, planDetails, playerDeath, playerHotkeyDto, playerKDA, playerScoreboard, playerScoreboardContainer, playerScoreboardGoldComparison, playerScoreboardSlot, playerSlot, playerSlotColorStyling, playerSlotLayoutStyling, playerSlotPickingStyle, playerSlotStyle, playerUpdateEvent, playerXpLevelStyle, pollWrapper, portalSessionResponse, postGameDamageGraph, postGameDamageGraphByTeam, postGameDamageGraphEntry, postGameGoldGraph, postGameOverview, postGamePlayerInfo, postGamePlayerPage, postGamePlayerRunesAndItems, postGamePlayerStats, postGameTeamInfo, postGameTeamOverview, predictionBar, predictionOutcomeRequest, predictionPoints, predictionWrapper, progressBarStyle, respawnTimer, roleQuestSlot, runeContainer, runeDisplayPerkStyle, runeDisplayStyle, runeDisplayTeamStyle, runeIcon, runeStyle, scoreStyle, scoreboardChampionSlot, scoreboardDamageGraphStyle, seasonData, seasonDatabaseUpdateMessage, shallowEqual, simpleChampionData, singleGameGoldGraph, singleGameGoldGraphData, singleIngameHotkeyConfigDto, singlePostgameHotkeyConfigDto, skinDisplayInfoStyle, skinDisplayPoweredByStyle, skinDisplayRoleIconStyle, skinDisplayStyle, smiteReactionBadgeStyle, smiteReactionPoweredByStyle, smiteReactionResult, smiteReactionRingStyle, smiteReactionStyle, smiteReactionTextStyle, spawnTimer, spawnTimerIconContainerStyle, spawnTimerInfoContainerStyle, spawnTimerStyle, startChatVoteDto, startCheckoutResponse, strokePropertiesChangedMessage, styleSet, styleSetEntry, styleSetNameCollection, styleSetUpdatedMessage, styleVariantUpdateMessage, styleVariantUpdatedEventArgs, summonerSpellData, summonerSpellInfoV2, tabLevelUpStyle, tabPlayer, tabTeam, tabsStyle, teamColorStyling, teamDamageStyle, teamData, teamDatabaseUpdateMessage, teamFightDamageStyle, teamIconStyle, teamInfo, teamInfoStyle, teamInhibitorData, teamLayoutStyling, teamMember, teamName, teamScore, teamScores, teamSummaryStyle, teamTextStyle, teamUpdateResults, teamWithMembers, teamfightDamageEntryStyle, teamfightDeathIconStyle, teamfightKillEvent, teamfightTimelinePlayer, teamfightTimelineSample, teamfightTimelineStyle, teamsAndTimerStyle, textComponentStyling, textContentWithStyle, textOutline, textStyle, textStyleWithBorder, textWithContent, timelineEntry, timerBadgePoll, timerBadgePrediction, timerBarStyle, timerTeamStyle, totalBadge, totalVotes, tournamentData, tournamentLogo, transitionEvents, transitionStyle, turretPlatingFallEvent, twitchChatVote, twitchPoll, twitchPrediction, twitchStatusDTO, ultiAbilityStyle, userTierUpdatedMessage, vector3, voteWrapper, websocketMessageTypes };
|
|
1611
6463
|
//# sourceMappingURL=index.js.map
|
|
1612
6464
|
//# sourceMappingURL=index.js.map
|