@bluebottle_gg/league-broadcast-client 1.0.0 → 1.1.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 +284 -13
- package/dist/index.js +198 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1010,6 +1010,7 @@ declare class teamMember {
|
|
|
1010
1010
|
familyName: string;
|
|
1011
1011
|
givenName: string;
|
|
1012
1012
|
displayName?: string;
|
|
1013
|
+
videoStreamUrl?: string;
|
|
1013
1014
|
}
|
|
1014
1015
|
|
|
1015
1016
|
/**
|
|
@@ -1286,6 +1287,7 @@ declare class pickSlot {
|
|
|
1286
1287
|
summonerSpells: summonerSpellData[];
|
|
1287
1288
|
champion?: championData;
|
|
1288
1289
|
championStatistics?: championStatistics;
|
|
1290
|
+
videoStreamUrl?: string;
|
|
1289
1291
|
}
|
|
1290
1292
|
|
|
1291
1293
|
/**
|
|
@@ -5003,6 +5005,18 @@ declare class championUltimateStyle {
|
|
|
5003
5005
|
layoutStyling: layoutStyle;
|
|
5004
5006
|
}
|
|
5005
5007
|
|
|
5008
|
+
/**
|
|
5009
|
+
* This is an auto-generated file.
|
|
5010
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
5011
|
+
*/
|
|
5012
|
+
|
|
5013
|
+
declare class tabLevelUpStyle {
|
|
5014
|
+
background: string | colorStyle;
|
|
5015
|
+
text: textStyle;
|
|
5016
|
+
animationDuration: number;
|
|
5017
|
+
showOnlyMajorLevelUps: boolean;
|
|
5018
|
+
}
|
|
5019
|
+
|
|
5006
5020
|
/**
|
|
5007
5021
|
* This is an auto-generated file.
|
|
5008
5022
|
* Any changes made to this file can be lost when this file is regenerated.
|
|
@@ -5016,17 +5030,7 @@ declare class championTabsStyle {
|
|
|
5016
5030
|
championLevel: textStyle;
|
|
5017
5031
|
championStatus: championStatusStyle;
|
|
5018
5032
|
fullChampionTabContainer: championTabContainerStyle;
|
|
5019
|
-
|
|
5020
|
-
|
|
5021
|
-
/**
|
|
5022
|
-
* This is an auto-generated file.
|
|
5023
|
-
* Any changes made to this file can be lost when this file is regenerated.
|
|
5024
|
-
*/
|
|
5025
|
-
|
|
5026
|
-
declare class tabLevelUpStyle {
|
|
5027
|
-
background: string | colorStyle;
|
|
5028
|
-
text: textStyle;
|
|
5029
|
-
animationDuration: number;
|
|
5033
|
+
levelUpStyle?: tabLevelUpStyle;
|
|
5030
5034
|
}
|
|
5031
5035
|
|
|
5032
5036
|
/**
|
|
@@ -5494,6 +5498,7 @@ declare class websocketMessageTypes {
|
|
|
5494
5498
|
static readonly fontsChanged = "fonts-changed";
|
|
5495
5499
|
static readonly matchDatabaseUpdate = "match-database-update";
|
|
5496
5500
|
static readonly gameDatabaseUpdate = "game-database-update";
|
|
5501
|
+
static readonly gameTeamSidesSwapped = "game-team-sides-swapped";
|
|
5497
5502
|
static readonly teamDatabaseUpdate = "team-database-update";
|
|
5498
5503
|
static readonly seasonDatabaseUpdate = "season-database-update";
|
|
5499
5504
|
static readonly appNotification = "app-notification";
|
|
@@ -5524,6 +5529,176 @@ declare class websocketMessageTypes {
|
|
|
5524
5529
|
static readonly userFeaturesUpdated = "user-features-updated";
|
|
5525
5530
|
static readonly damageEventHistoryUpdate = "damage-event-history-update";
|
|
5526
5531
|
static readonly customOverlayUpdate = "custom-overlay-update";
|
|
5532
|
+
static readonly brushPresetsUpdate = "brush-presets-update";
|
|
5533
|
+
static readonly telestratorConfigUpdate = "telestrator-config-update";
|
|
5534
|
+
static readonly telestratorHotkeyFired = "telestrator-hotkey-fired";
|
|
5535
|
+
static readonly scriptEditorSwitch = "script-editor-switch";
|
|
5536
|
+
}
|
|
5537
|
+
|
|
5538
|
+
/**
|
|
5539
|
+
* This is an auto-generated file.
|
|
5540
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
5541
|
+
*/
|
|
5542
|
+
declare class authHelloMessage {
|
|
5543
|
+
type: string;
|
|
5544
|
+
token?: string;
|
|
5545
|
+
clientType: string;
|
|
5546
|
+
clientName?: string;
|
|
5547
|
+
protocolVersion: number;
|
|
5548
|
+
}
|
|
5549
|
+
|
|
5550
|
+
/**
|
|
5551
|
+
* This is an auto-generated file.
|
|
5552
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
5553
|
+
*/
|
|
5554
|
+
declare class authHelloOkMessage {
|
|
5555
|
+
type: string;
|
|
5556
|
+
clientId: string;
|
|
5557
|
+
capabilities: string[];
|
|
5558
|
+
serverVersion: string;
|
|
5559
|
+
}
|
|
5560
|
+
|
|
5561
|
+
/**
|
|
5562
|
+
* This is an auto-generated file.
|
|
5563
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
5564
|
+
*/
|
|
5565
|
+
declare class drawingEventMessage {
|
|
5566
|
+
type: string;
|
|
5567
|
+
roomId: string;
|
|
5568
|
+
eventType: string;
|
|
5569
|
+
strokeId?: string;
|
|
5570
|
+
color?: string;
|
|
5571
|
+
width?: number;
|
|
5572
|
+
layer?: string;
|
|
5573
|
+
points?: number[];
|
|
5574
|
+
}
|
|
5575
|
+
|
|
5576
|
+
/**
|
|
5577
|
+
* This is an auto-generated file.
|
|
5578
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
5579
|
+
*/
|
|
5580
|
+
declare class drawingStrokeDto {
|
|
5581
|
+
strokeId: string;
|
|
5582
|
+
color: string;
|
|
5583
|
+
width: number;
|
|
5584
|
+
layer?: string;
|
|
5585
|
+
points: number[];
|
|
5586
|
+
}
|
|
5587
|
+
|
|
5588
|
+
/**
|
|
5589
|
+
* This is an auto-generated file.
|
|
5590
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
5591
|
+
*/
|
|
5592
|
+
|
|
5593
|
+
declare class drawingStateMessage {
|
|
5594
|
+
type: string;
|
|
5595
|
+
roomId: string;
|
|
5596
|
+
targetClientId: string;
|
|
5597
|
+
strokes: drawingStrokeDto[];
|
|
5598
|
+
}
|
|
5599
|
+
|
|
5600
|
+
/**
|
|
5601
|
+
* This is an auto-generated file.
|
|
5602
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
5603
|
+
*/
|
|
5604
|
+
declare class drawingStateRequestMessage {
|
|
5605
|
+
type: string;
|
|
5606
|
+
roomId: string;
|
|
5607
|
+
targetClientId: string;
|
|
5608
|
+
targetMemberId: string;
|
|
5609
|
+
}
|
|
5610
|
+
|
|
5611
|
+
/**
|
|
5612
|
+
* This is an auto-generated file.
|
|
5613
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
5614
|
+
*/
|
|
5615
|
+
declare class hubErrorMessage {
|
|
5616
|
+
type: string;
|
|
5617
|
+
code: number;
|
|
5618
|
+
message: string;
|
|
5619
|
+
requestType?: string;
|
|
5620
|
+
}
|
|
5621
|
+
|
|
5622
|
+
/**
|
|
5623
|
+
* This is an auto-generated file.
|
|
5624
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
5625
|
+
*/
|
|
5626
|
+
declare class hubMemberDto {
|
|
5627
|
+
id: string;
|
|
5628
|
+
clientType: string;
|
|
5629
|
+
clientName?: string;
|
|
5630
|
+
}
|
|
5631
|
+
|
|
5632
|
+
/**
|
|
5633
|
+
* This is an auto-generated file.
|
|
5634
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
5635
|
+
*/
|
|
5636
|
+
declare class hubPingMessage {
|
|
5637
|
+
type: string;
|
|
5638
|
+
}
|
|
5639
|
+
|
|
5640
|
+
/**
|
|
5641
|
+
* This is an auto-generated file.
|
|
5642
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
5643
|
+
*/
|
|
5644
|
+
declare class hubPongMessage {
|
|
5645
|
+
type: string;
|
|
5646
|
+
}
|
|
5647
|
+
|
|
5648
|
+
/**
|
|
5649
|
+
* This is an auto-generated file.
|
|
5650
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
5651
|
+
*/
|
|
5652
|
+
|
|
5653
|
+
declare class roomJoinedMessage {
|
|
5654
|
+
type: string;
|
|
5655
|
+
roomId: string;
|
|
5656
|
+
roomType: string;
|
|
5657
|
+
roomKey: string;
|
|
5658
|
+
slug?: string;
|
|
5659
|
+
memberId: string;
|
|
5660
|
+
members: hubMemberDto[];
|
|
5661
|
+
}
|
|
5662
|
+
|
|
5663
|
+
/**
|
|
5664
|
+
* This is an auto-generated file.
|
|
5665
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
5666
|
+
*/
|
|
5667
|
+
declare class roomJoinMessage {
|
|
5668
|
+
type: string;
|
|
5669
|
+
roomType: string;
|
|
5670
|
+
roomKey: string;
|
|
5671
|
+
slug?: string;
|
|
5672
|
+
}
|
|
5673
|
+
|
|
5674
|
+
/**
|
|
5675
|
+
* This is an auto-generated file.
|
|
5676
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
5677
|
+
*/
|
|
5678
|
+
declare class roomLeaveMessage {
|
|
5679
|
+
type: string;
|
|
5680
|
+
roomId: string;
|
|
5681
|
+
}
|
|
5682
|
+
|
|
5683
|
+
/**
|
|
5684
|
+
* This is an auto-generated file.
|
|
5685
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
5686
|
+
*/
|
|
5687
|
+
|
|
5688
|
+
declare class roomMemberJoinedMessage {
|
|
5689
|
+
type: string;
|
|
5690
|
+
roomId: string;
|
|
5691
|
+
member: hubMemberDto;
|
|
5692
|
+
}
|
|
5693
|
+
|
|
5694
|
+
/**
|
|
5695
|
+
* This is an auto-generated file.
|
|
5696
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
5697
|
+
*/
|
|
5698
|
+
declare class roomMemberLeftMessage {
|
|
5699
|
+
type: string;
|
|
5700
|
+
roomId: string;
|
|
5701
|
+
memberId: string;
|
|
5527
5702
|
}
|
|
5528
5703
|
|
|
5529
5704
|
/**
|
|
@@ -5660,6 +5835,31 @@ declare enum AssetType {
|
|
|
5660
5835
|
Unknown = 10
|
|
5661
5836
|
}
|
|
5662
5837
|
|
|
5838
|
+
/**
|
|
5839
|
+
* This is an auto-generated file.
|
|
5840
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
5841
|
+
*/
|
|
5842
|
+
declare class brushPreset {
|
|
5843
|
+
id: string;
|
|
5844
|
+
name: string;
|
|
5845
|
+
color?: string;
|
|
5846
|
+
width?: number;
|
|
5847
|
+
layer?: string;
|
|
5848
|
+
startTip?: string;
|
|
5849
|
+
endTip?: string;
|
|
5850
|
+
lineStyle?: string;
|
|
5851
|
+
}
|
|
5852
|
+
|
|
5853
|
+
/**
|
|
5854
|
+
* This is an auto-generated file.
|
|
5855
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
5856
|
+
*/
|
|
5857
|
+
|
|
5858
|
+
declare class brushPresetsChangedMessage {
|
|
5859
|
+
type: string;
|
|
5860
|
+
presets: brushPreset[];
|
|
5861
|
+
}
|
|
5862
|
+
|
|
5663
5863
|
/**
|
|
5664
5864
|
* This is an auto-generated file.
|
|
5665
5865
|
* Any changes made to this file can be lost when this file is regenerated.
|
|
@@ -5799,6 +5999,16 @@ declare class gameStatusMessage {
|
|
|
5799
5999
|
isTestingEnvironment?: boolean;
|
|
5800
6000
|
}
|
|
5801
6001
|
|
|
6002
|
+
/**
|
|
6003
|
+
* This is an auto-generated file.
|
|
6004
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
6005
|
+
*/
|
|
6006
|
+
|
|
6007
|
+
declare class gameTeamSidesSwappedMessage {
|
|
6008
|
+
type: string;
|
|
6009
|
+
game: gameWithTeams$1;
|
|
6010
|
+
}
|
|
6011
|
+
|
|
5802
6012
|
/**
|
|
5803
6013
|
* This is an auto-generated file.
|
|
5804
6014
|
* Any changes made to this file can be lost when this file is regenerated.
|
|
@@ -6767,6 +6977,7 @@ declare class playerSlotStyle {
|
|
|
6767
6977
|
backgroundColor: string | colorStyle;
|
|
6768
6978
|
textStyle: textStyle;
|
|
6769
6979
|
layout: layoutStyle;
|
|
6980
|
+
useVideoBackground: boolean;
|
|
6770
6981
|
}
|
|
6771
6982
|
|
|
6772
6983
|
/**
|
|
@@ -7651,7 +7862,67 @@ declare enum WindowType {
|
|
|
7651
7862
|
Startup = 1,
|
|
7652
7863
|
Login = 2,
|
|
7653
7864
|
Settings = 3,
|
|
7654
|
-
Drawing = 4
|
|
7865
|
+
Drawing = 4,
|
|
7866
|
+
ScriptEditor = 5
|
|
7867
|
+
}
|
|
7868
|
+
|
|
7869
|
+
/**
|
|
7870
|
+
* This is an auto-generated file.
|
|
7871
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
7872
|
+
*/
|
|
7873
|
+
declare class pollChoice {
|
|
7874
|
+
id?: string;
|
|
7875
|
+
title?: string;
|
|
7876
|
+
votes: number;
|
|
7877
|
+
channel_points_votes: number;
|
|
7878
|
+
bits_votes: number;
|
|
7879
|
+
}
|
|
7880
|
+
|
|
7881
|
+
/**
|
|
7882
|
+
* This is an auto-generated file.
|
|
7883
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
7884
|
+
*/
|
|
7885
|
+
declare class predictionOutcome {
|
|
7886
|
+
id?: string;
|
|
7887
|
+
title?: string;
|
|
7888
|
+
users: number;
|
|
7889
|
+
channel_points: number;
|
|
7890
|
+
color?: string;
|
|
7891
|
+
}
|
|
7892
|
+
|
|
7893
|
+
/**
|
|
7894
|
+
* This is an auto-generated file.
|
|
7895
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
7896
|
+
*/
|
|
7897
|
+
|
|
7898
|
+
declare class twitchPollDto {
|
|
7899
|
+
id?: string;
|
|
7900
|
+
broadcaster_id?: string;
|
|
7901
|
+
title?: string;
|
|
7902
|
+
choices?: pollChoice[];
|
|
7903
|
+
bits_voting_enabled: boolean;
|
|
7904
|
+
bits_per_vote: number;
|
|
7905
|
+
channel_points_voting_enabled: boolean;
|
|
7906
|
+
channel_points_per_vote: number;
|
|
7907
|
+
status?: string;
|
|
7908
|
+
duration: number;
|
|
7909
|
+
started_at: Date;
|
|
7910
|
+
}
|
|
7911
|
+
|
|
7912
|
+
/**
|
|
7913
|
+
* This is an auto-generated file.
|
|
7914
|
+
* Any changes made to this file can be lost when this file is regenerated.
|
|
7915
|
+
*/
|
|
7916
|
+
|
|
7917
|
+
declare class twitchPredictionDto {
|
|
7918
|
+
id?: string;
|
|
7919
|
+
broadcaster_id?: string;
|
|
7920
|
+
title?: string;
|
|
7921
|
+
winning_outcome_id?: string;
|
|
7922
|
+
outcomes?: predictionOutcome[];
|
|
7923
|
+
prediction_window: number;
|
|
7924
|
+
status?: string;
|
|
7925
|
+
created_at: Date;
|
|
7655
7926
|
}
|
|
7656
7927
|
|
|
7657
7928
|
/**
|
|
@@ -7832,4 +8103,4 @@ interface NormalizedDamageEntry {
|
|
|
7832
8103
|
*/
|
|
7833
8104
|
declare function normalizeDamageEntries(entries: damageRecapEntry[], limit?: number): NormalizedDamageEntry[];
|
|
7834
8105
|
|
|
7835
|
-
export { ActionSubType, ActionType, type AggregatedSpellEntry, AnnouncementType, ApiClient, ApiError, AppTheme, AssetType, BestOfType$1 as BestOfType, type BoundIngameTimerUtils, CacheOperation, CampLocation, type ChampSelectEventHandlers, type ChampSelectSnapshot, ChampSelectStateStore, ChampionIconType, CombinedViewTransitionType, ContentAlign, CustomOverlayMode, type DamageBarSegment, DamageEventType, DamageSplitMode, DamageType, DatabaseUpdateType, DevServerStatus, type EntityType, type EqualityFn, Feature, GameApi, GameState$1 as GameState, GameStateApi, type GameStateSnapshot, GameStateStore, GradientType, HeroStatsDisplayMode, IngameApi, type IngameEventHandlers, IngameObjectiveType, IngameSideInfoPageType, Interval, Lane, LeagueBroadcastClient, type LeagueBroadcastClientConfig, MAGIC_COLOR, MatchApi, MatchRuleSet$1 as MatchRuleSet, type NormalizedDamageEntry, ObjectFit, ObjectiveEventType, ObjectiveRecapDisplayMode, PHYS_COLOR, PaymentInterval, PickBanPhase, PostGameApi, PostGameDataType, damageBarStyle as PostgameDamageBarStyle, PreGameApi, divider as PregameDivider, ResourceType, RestApi, ScoreDisplayMode, ScoreDotBorderMode, SeasonApi, SetPhaseType, SpellClassification, SpellSlotIndex, StrokeLayer, StrokeLineStyle, StrokeTipStyle, type Subscribable, TRUE_COLOR, Team$1 as 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, changeEmailRequest, changeEmailResponse, changePasswordRequest, chatVoteOption, chatVoteResultDto, checkoutCompleteResponse, checkoutRequestDTO, choiceBar, choiceTitel, choiceVotes, cloudOverlayDownloadResponse, cloudOverlayMetadata, cloudOverlayUploadRequest, cloudOverlayUploadResponse, cloudOverlaysResponse, cloudStyleSetDownloadResponse, cloudStyleSetMetadata, cloudStyleSetUploadRequest, cloudStyleSetUploadResponse, cloudStyleSetsResponse, cloudSyncConfig, cloudSyncResult, coachSlot, colorByDamageType, colorComponentStyling, colorGradientData, colorImageData, colorRGBA, colorStop, colorStyle, colorStyling, combinedViewStyle, combinedViewTransitionStyle, communityDragonCacheProgressMessage, communityDragonV2ProgressMessage, communityDragonV2StatusMessage, componentStyle, contentContainerStyle, createChoice, createIngameTimerUtils, createPollDto, createPredictionDto, creepScore, curveStyle, customOverlay, customOverlayDescriptor, customOverlayUpdateMessage, damageBarSegments, damageBarStyle$1 as 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, devServerState, displayColorData, divider$1 as divider, dmgTypeColor, emailConfirmRequest, emailForgotPasswordRequest, emailLoginRequest, emailResendCodeRequest, emailResetPasswordRequest, emailSignUpRequest, endPollDto, endPredictionDto, fearLessByGame, fearLessSingleRow, fearlessChampionImage, fearlessDraftStyle, fearlessDraftStylePregame, fearlessTree, fearlessTreeBanRowStyle, fearlessTreeConnectorStyle, fearlessTreeGameNodeStyle, fearlessTreeHeaderStyle, fontsChangedMessage, formatDamage, frontendRouteUpdateMessage, fullPlayerScoreboardSlots, gameAnalysis, gameDatabaseUpdateMessage, gameInfoRotation, gameStatusMessage, gameTimer, gameTimerStyle, gameWithTeams$1 as gameWithTeams, getAbilityCooldownFraction, getAbilityCooldownRemaining, getDamageByType, getItemCooldownFraction, getItemCooldownRemaining, getRemaining, getRespawnRemaining, getRoleQuest, getSortedInventory, getTrinket, globalPosition, globalScoreboard, globalScoreboardBooleanIndicator, globalScoreboardSection, globalStyleProperties, goldAdvantage, goldEfficiencyEntry, goldEfficiencyHeaderStyle, goldEfficiencyHeatStyle, goldEfficiencyPlayerRowStyle, goldEfficiencyStyle, goldGraph, goldGraphStyle, gridLineStyle, headline, healthBarStyle, hotkeyFiredMessage, type iApplicationNotification, type iApplicationNotificationResponse, type iHeroNamed, type iObjectiveRespawnData, type iSpellObjectResource, type iWebsocketMessage, 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, isAbilityOnCooldown, isActive, isItemOnCooldown, isPlayerDead, 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$1 as 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, optionalGameData, optionalMatchData, optionalTextStyle, partialStrokeProperties, perkData, perkInfoV2, perkStyleInfoV2, phaseTimer, phaseTimerColorStyling, phaseTimerLayoutStyling, pickBanActionEventArgs, pickBanTimer, pickBans, pickSlot, planDescriptorRecord, 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, profileResponse, progressBarStyle, registerOverlayRequest, respawnTimer, roleQuestSlot, runeContainer, runeDisplayPerkStyle, runeDisplayStyle, runeDisplayTeamStyle, runeIcon, runeStyle, scoreStyle, scoreboardChampionSlot, scoreboardDamageGraphStyle, seasonData, seasonDatabaseUpdateMessage, shallowEqual, simpleChampionData$1 as 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$1 as tabPlayer, tabTeam, tabsStyle, teamColorStyling, teamDamageStyle, teamData, teamDatabaseUpdateMessage, teamFightDamageStyle, teamIconStyle, teamInfo, teamInfoStyle, teamInhibitorData, teamLayoutStyling, teamMember, teamName, teamScore, teamScores, teamSummaryStyle, teamTextStyle, teamUpdateResults, teamWithMembers$1 as 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, updateNameRequest, updateOverlayRequest, userFeaturesUpdatedMessage, userTierUpdatedMessage, vector3, verifyEmailRequest, voteWrapper, websocketMessageTypes };
|
|
8106
|
+
export { ActionSubType, ActionType, type AggregatedSpellEntry, AnnouncementType, ApiClient, ApiError, AppTheme, AssetType, BestOfType$1 as BestOfType, type BoundIngameTimerUtils, CacheOperation, CampLocation, type ChampSelectEventHandlers, type ChampSelectSnapshot, ChampSelectStateStore, ChampionIconType, CombinedViewTransitionType, ContentAlign, CustomOverlayMode, type DamageBarSegment, DamageEventType, DamageSplitMode, DamageType, DatabaseUpdateType, DevServerStatus, type EntityType, type EqualityFn, Feature, GameApi, GameState$1 as GameState, GameStateApi, type GameStateSnapshot, GameStateStore, GradientType, HeroStatsDisplayMode, IngameApi, type IngameEventHandlers, IngameObjectiveType, IngameSideInfoPageType, Interval, Lane, LeagueBroadcastClient, type LeagueBroadcastClientConfig, MAGIC_COLOR, MatchApi, MatchRuleSet$1 as MatchRuleSet, type NormalizedDamageEntry, ObjectFit, ObjectiveEventType, ObjectiveRecapDisplayMode, PHYS_COLOR, PaymentInterval, PickBanPhase, PostGameApi, PostGameDataType, damageBarStyle as PostgameDamageBarStyle, PreGameApi, divider as PregameDivider, ResourceType, RestApi, ScoreDisplayMode, ScoreDotBorderMode, SeasonApi, SetPhaseType, SpellClassification, SpellSlotIndex, StrokeLayer, StrokeLineStyle, StrokeTipStyle, type Subscribable, TRUE_COLOR, Team$1 as Team, TeamColorType, TeamMemberRole, TextOrientation, Tier, TimeLineActionType, TransitionType, WebSocketManager, WindowType, WritingMode, activeComponentChangedEventArgs, activeComponentChangedMessage, addMatchRequestArgs, aggregateSpellEntries, announcementParameter, announcerColors, announcerEvent, announcerUniversalStyle, applicationLifetimeMessage, applicationNotificationCompletedMessage, applicationNotificationMessage, authHelloMessage, authHelloOkMessage, banSlot, banSlotLayoutStyling, banStyle, barStyle, billingCycle, borderStyle, bottomRowPickBanStyle, bottomRowSizeStyle, bottomRowTeamStyle, bottomRowTournamentData, brushPresetsChangedMessage, 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, changeEmailRequest, changeEmailResponse, changePasswordRequest, chatVoteOption, chatVoteResultDto, checkoutCompleteResponse, checkoutRequestDTO, choiceBar, choiceTitel, choiceVotes, cloudOverlayDownloadResponse, cloudOverlayMetadata, cloudOverlayUploadRequest, cloudOverlayUploadResponse, cloudOverlaysResponse, cloudStyleSetDownloadResponse, cloudStyleSetMetadata, cloudStyleSetUploadRequest, cloudStyleSetUploadResponse, cloudStyleSetsResponse, cloudSyncConfig, cloudSyncResult, coachSlot, colorByDamageType, colorComponentStyling, colorGradientData, colorImageData, colorRGBA, colorStop, colorStyle, colorStyling, combinedViewStyle, combinedViewTransitionStyle, communityDragonCacheProgressMessage, communityDragonV2ProgressMessage, communityDragonV2StatusMessage, componentStyle, contentContainerStyle, createChoice, createIngameTimerUtils, createPollDto, createPredictionDto, creepScore, curveStyle, customOverlay, customOverlayDescriptor, customOverlayUpdateMessage, damageBarSegments, damageBarStyle$1 as 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, devServerState, displayColorData, divider$1 as divider, dmgTypeColor, drawingEventMessage, drawingStateMessage, drawingStateRequestMessage, drawingStrokeDto, emailConfirmRequest, emailForgotPasswordRequest, emailLoginRequest, emailResendCodeRequest, emailResetPasswordRequest, emailSignUpRequest, endPollDto, endPredictionDto, fearLessByGame, fearLessSingleRow, fearlessChampionImage, fearlessDraftStyle, fearlessDraftStylePregame, fearlessTree, fearlessTreeBanRowStyle, fearlessTreeConnectorStyle, fearlessTreeGameNodeStyle, fearlessTreeHeaderStyle, fontsChangedMessage, formatDamage, frontendRouteUpdateMessage, fullPlayerScoreboardSlots, gameAnalysis, gameDatabaseUpdateMessage, gameInfoRotation, gameStatusMessage, gameTeamSidesSwappedMessage, gameTimer, gameTimerStyle, gameWithTeams$1 as gameWithTeams, getAbilityCooldownFraction, getAbilityCooldownRemaining, getDamageByType, getItemCooldownFraction, getItemCooldownRemaining, getRemaining, getRespawnRemaining, getRoleQuest, getSortedInventory, getTrinket, globalPosition, globalScoreboard, globalScoreboardBooleanIndicator, globalScoreboardSection, globalStyleProperties, goldAdvantage, goldEfficiencyEntry, goldEfficiencyHeaderStyle, goldEfficiencyHeatStyle, goldEfficiencyPlayerRowStyle, goldEfficiencyStyle, goldGraph, goldGraphStyle, gridLineStyle, headline, healthBarStyle, hotkeyFiredMessage, hubErrorMessage, hubMemberDto, hubPingMessage, hubPongMessage, type iApplicationNotification, type iApplicationNotificationResponse, type iHeroNamed, type iObjectiveRespawnData, type iSpellObjectResource, type iWebsocketMessage, 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, isAbilityOnCooldown, isActive, isItemOnCooldown, isPlayerDead, 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$1 as 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, optionalGameData, optionalMatchData, optionalTextStyle, partialStrokeProperties, perkData, perkInfoV2, perkStyleInfoV2, phaseTimer, phaseTimerColorStyling, phaseTimerLayoutStyling, pickBanActionEventArgs, pickBanTimer, pickBans, pickSlot, planDescriptorRecord, planDetails, playerDeath, playerHotkeyDto, playerKDA, playerScoreboard, playerScoreboardContainer, playerScoreboardGoldComparison, playerScoreboardSlot, playerSlot, playerSlotColorStyling, playerSlotLayoutStyling, playerSlotPickingStyle, playerSlotStyle, playerUpdateEvent, playerXpLevelStyle, pollChoice, pollWrapper, portalSessionResponse, postGameDamageGraph, postGameDamageGraphByTeam, postGameDamageGraphEntry, postGameGoldGraph, postGameOverview, postGamePlayerInfo, postGamePlayerPage, postGamePlayerRunesAndItems, postGamePlayerStats, postGameTeamInfo, postGameTeamOverview, predictionBar, predictionOutcome, predictionOutcomeRequest, predictionPoints, predictionWrapper, profileResponse, progressBarStyle, registerOverlayRequest, respawnTimer, roleQuestSlot, roomJoinMessage, roomJoinedMessage, roomLeaveMessage, roomMemberJoinedMessage, roomMemberLeftMessage, runeContainer, runeDisplayPerkStyle, runeDisplayStyle, runeDisplayTeamStyle, runeIcon, runeStyle, scoreStyle, scoreboardChampionSlot, scoreboardDamageGraphStyle, seasonData, seasonDatabaseUpdateMessage, shallowEqual, simpleChampionData$1 as 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$1 as tabPlayer, tabTeam, tabsStyle, teamColorStyling, teamDamageStyle, teamData, teamDatabaseUpdateMessage, teamFightDamageStyle, teamIconStyle, teamInfo, teamInfoStyle, teamInhibitorData, teamLayoutStyling, teamMember, teamName, teamScore, teamScores, teamSummaryStyle, teamTextStyle, teamUpdateResults, teamWithMembers$1 as 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, twitchPollDto, twitchPrediction, twitchPredictionDto, twitchStatusDTO, ultiAbilityStyle, updateNameRequest, updateOverlayRequest, userFeaturesUpdatedMessage, userTierUpdatedMessage, vector3, verifyEmailRequest, voteWrapper, websocketMessageTypes };
|