be-components 7.4.2 → 7.4.4
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/lib/commonjs/ApiOverrides/index.js +4 -2
- package/lib/commonjs/ApiOverrides/index.js.map +1 -1
- package/lib/commonjs/BettorBot/api/index.js +64 -0
- package/lib/commonjs/BettorBot/api/index.js.map +1 -0
- package/lib/commonjs/BettorBot/components/BroadcastMessageCard.js +233 -0
- package/lib/commonjs/BettorBot/components/BroadcastMessageCard.js.map +1 -0
- package/lib/commonjs/BettorBot/components/ServerInfoCard.js +126 -0
- package/lib/commonjs/BettorBot/components/ServerInfoCard.js.map +1 -0
- package/lib/commonjs/BettorBot/index.js +532 -0
- package/lib/commonjs/BettorBot/index.js.map +1 -0
- package/lib/commonjs/NotificationManager/api/index.js +448 -0
- package/lib/commonjs/NotificationManager/api/index.js.map +1 -0
- package/lib/commonjs/NotificationManager/index.js +1159 -0
- package/lib/commonjs/NotificationManager/index.js.map +1 -0
- package/lib/commonjs/index.js +27 -0
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/types.d.js.map +1 -1
- package/lib/module/ApiOverrides/index.js +4 -2
- package/lib/module/ApiOverrides/index.js.map +1 -1
- package/lib/module/BettorBot/api/index.js +57 -0
- package/lib/module/BettorBot/api/index.js.map +1 -0
- package/lib/module/BettorBot/components/BroadcastMessageCard.js +226 -0
- package/lib/module/BettorBot/components/BroadcastMessageCard.js.map +1 -0
- package/lib/module/BettorBot/components/ServerInfoCard.js +119 -0
- package/lib/module/BettorBot/components/ServerInfoCard.js.map +1 -0
- package/lib/module/BettorBot/index.js +524 -0
- package/lib/module/BettorBot/index.js.map +1 -0
- package/lib/module/NotificationManager/api/index.js +441 -0
- package/lib/module/NotificationManager/api/index.js.map +1 -0
- package/lib/module/NotificationManager/index.js +1140 -0
- package/lib/module/NotificationManager/index.js.map +1 -0
- package/lib/module/index.js +4 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/types.d.js.map +1 -1
- package/lib/typescript/lib/commonjs/ApiOverrides/index.d.ts.map +1 -1
- package/lib/typescript/lib/commonjs/BettorBot/api/index.d.ts +9 -0
- package/lib/typescript/lib/commonjs/BettorBot/api/index.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BettorBot/components/BroadcastMessageCard.d.ts +10 -0
- package/lib/typescript/lib/commonjs/BettorBot/components/BroadcastMessageCard.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BettorBot/components/ServerInfoCard.d.ts +10 -0
- package/lib/typescript/lib/commonjs/BettorBot/components/ServerInfoCard.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BettorBot/index.d.ts +7 -0
- package/lib/typescript/lib/commonjs/BettorBot/index.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/NotificationManager/api/index.d.ts +804 -0
- package/lib/typescript/lib/commonjs/NotificationManager/api/index.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/NotificationManager/index.d.ts +815 -0
- package/lib/typescript/lib/commonjs/NotificationManager/index.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/index.d.ts +804 -0
- package/lib/typescript/lib/commonjs/index.d.ts.map +1 -1
- package/lib/typescript/lib/module/ApiOverrides/index.d.ts.map +1 -1
- package/lib/typescript/lib/module/BettorBot/api/index.d.ts +8 -0
- package/lib/typescript/lib/module/BettorBot/api/index.d.ts.map +1 -0
- package/lib/typescript/lib/module/BettorBot/components/BroadcastMessageCard.d.ts +10 -0
- package/lib/typescript/lib/module/BettorBot/components/BroadcastMessageCard.d.ts.map +1 -0
- package/lib/typescript/lib/module/BettorBot/components/ServerInfoCard.d.ts +10 -0
- package/lib/typescript/lib/module/BettorBot/components/ServerInfoCard.d.ts.map +1 -0
- package/lib/typescript/lib/module/BettorBot/index.d.ts +7 -0
- package/lib/typescript/lib/module/BettorBot/index.d.ts.map +1 -0
- package/lib/typescript/lib/module/NotificationManager/api/index.d.ts +803 -0
- package/lib/typescript/lib/module/NotificationManager/api/index.d.ts.map +1 -0
- package/lib/typescript/lib/module/NotificationManager/index.d.ts +16 -0
- package/lib/typescript/lib/module/NotificationManager/index.d.ts.map +1 -0
- package/lib/typescript/lib/module/index.d.ts +5 -1
- package/lib/typescript/lib/module/index.d.ts.map +1 -1
- package/lib/typescript/src/ApiOverrides/index.d.ts.map +1 -1
- package/lib/typescript/src/BettorBot/api/index.d.ts +9 -0
- package/lib/typescript/src/BettorBot/api/index.d.ts.map +1 -0
- package/lib/typescript/src/BettorBot/components/BroadcastMessageCard.d.ts +15 -0
- package/lib/typescript/src/BettorBot/components/BroadcastMessageCard.d.ts.map +1 -0
- package/lib/typescript/src/BettorBot/components/ServerInfoCard.d.ts +12 -0
- package/lib/typescript/src/BettorBot/components/ServerInfoCard.d.ts.map +1 -0
- package/lib/typescript/src/BettorBot/index.d.ts +9 -0
- package/lib/typescript/src/BettorBot/index.d.ts.map +1 -0
- package/lib/typescript/src/NotificationManager/api/index.d.ts +822 -0
- package/lib/typescript/src/NotificationManager/api/index.d.ts.map +1 -0
- package/lib/typescript/src/NotificationManager/index.d.ts +17 -0
- package/lib/typescript/src/NotificationManager/index.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +4 -1
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/ApiOverrides/index.ts +4 -2
- package/src/BettorBot/api/index.ts +49 -0
- package/src/BettorBot/components/BroadcastMessageCard.tsx +159 -0
- package/src/BettorBot/components/ServerInfoCard.tsx +73 -0
- package/src/BettorBot/index.tsx +295 -0
- package/src/NotificationManager/api/index.ts +134 -0
- package/src/NotificationManager/index.tsx +894 -0
- package/src/index.tsx +8 -1
- package/src/types.d.ts +118 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../module/NotificationManager/api/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAkYkB,gCAGf;IAIsB,8DAatB;IAIuB,yFAYvB;IAC4B,qDAO5B;IACmC,sFAOnC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export default NotificationManager;
|
|
2
|
+
declare function NotificationManager({ player_ids, me, notification_type, default_path_name, onFocusPosition, default_params, onComplete, onClose }: {
|
|
3
|
+
player_ids: any;
|
|
4
|
+
me: any;
|
|
5
|
+
notification_type: any;
|
|
6
|
+
default_path_name: any;
|
|
7
|
+
onFocusPosition: any;
|
|
8
|
+
default_params: any;
|
|
9
|
+
onComplete: any;
|
|
10
|
+
onClose: any;
|
|
11
|
+
}): React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
|
|
12
|
+
import { NotificationApi } from './api';
|
|
13
|
+
import { NotificationHelpers } from './api';
|
|
14
|
+
import React from 'react';
|
|
15
|
+
export { NotificationApi, NotificationHelpers };
|
|
16
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../module/NotificationManager/index.js"],"names":[],"mappings":";AAmBA;;;;;;;;;kGA6lCC;gCA5mCoD,OAAO;oCAAP,OAAO;kBAJR,OAAO"}
|
|
@@ -7,6 +7,7 @@ import CreateEngagement from './CreateEngagement';
|
|
|
7
7
|
import DiscordConnectionManager from './Discord';
|
|
8
8
|
import { BEEventApi } from './Observer';
|
|
9
9
|
import FlashCampaignManager from './PartnerPortal/components/FlashCampaignManager';
|
|
10
|
+
import BettorBotDashboard from './BettorBot';
|
|
10
11
|
import EmbedManager from './PartnerPortal/components/EmbedManager';
|
|
11
12
|
import RankingsCard from './RankingsCard';
|
|
12
13
|
import ManageFlashMarket from './FlashMarket/components/ManageFlashMarket';
|
|
@@ -71,5 +72,8 @@ import CompetitionCard from './Engage/components/CompetitionCard';
|
|
|
71
72
|
import SquaresCompetitionCard from './Engage/components/SquaresCompetitionCard';
|
|
72
73
|
import BracketCompetitionCard from './Engage/components/BracketCompetitionCard';
|
|
73
74
|
import SeasonCard from './Engage/components/SeasonCard';
|
|
74
|
-
|
|
75
|
+
import NotificationManager from './NotificationManager';
|
|
76
|
+
import { NotificationApi } from './NotificationManager/api';
|
|
77
|
+
import { NotificationHelpers } from './NotificationManager/api';
|
|
78
|
+
export { Authenticator, Observer, MyAction, CreateEmbed, ReferralCodeManager, CreateEngagement, DiscordConnectionManager, BEEventApi, FlashCampaignManager, BettorBotDashboard, EmbedManager, RankingsCard, ManageFlashMarket, BELinkApi, PartnerPortal, SquaresManager, GuideView, BetMatch, ManageFilter, Ticker, Premium, CreateGroupWizard, LeaderboardCard, GroupComponent, LocationTracker, BEClarity, FlashMarket, ContactsCard, PlayerRecommender, GolfScoreboard, ContactsSelector, Campaign, BEPostHog, ManageBracketCompetitionForm, NotificationModule, FlashHolder, useNotifications, ClaritySmartEvents, ProfileManager, CompetitionManager, Components, SocialComponents, APIOverrides, LinearGradient, usePlayerLocation, BettorSearch, Colors, MyWallet, Share, Checkout, MarketComponents, EventComponents, PollCampaign, PollCampaignApi, PollApi, MarketMaker, CompetitionModule, SeasonManager, CreateCompetitionForm, CreateSeasonForm, SeasonModule, AdminCompetitionList, AdServer, Leaderboard, AdProvider, BracketRoom, SquaresModule, SocketManager, PromotedOrder, EngageModule, CompetitionCard, SquaresCompetitionCard, BracketCompetitionCard, SeasonCard, NotificationManager, NotificationApi, NotificationHelpers };
|
|
75
79
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../module/index.js"],"names":[],"mappings":"0BAE0B,iBAAiB;qBAOK,YAAY;qBA6DvC,YAAY;wBAHT,wCAAwC;gCAChC,gDAAgD;6BAPnD,oBAAoB;qCAEZ,WAAW;2BAtDA,YAAY;iCA4D3B,iDAAiD;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../module/index.js"],"names":[],"mappings":"0BAE0B,iBAAiB;qBAOK,YAAY;qBA6DvC,YAAY;wBAHT,wCAAwC;gCAChC,gDAAgD;6BAPnD,oBAAoB;qCAEZ,WAAW;2BAtDA,YAAY;iCA4D3B,iDAAiD;+BAEnD,aAAa;yBALnB,yCAAyC;yBATzC,gBAAgB;8BAOX,4CAA4C;0BAvD1B,YAAY;0BAwDlC,iBAAiB;2BAHhB,kBAAkB;sBAJvB,SAAS;qBALV,YAAY;yBAER,oCAAoC;mBAb1C,UAAU;oBAYT,WAAW;8BAMD,sCAAsC;4BAhBxC,sCAAsC;2BAevC,SAAS;4BA3BR,mBAAmB;sBAoBzB,WAAW;wBAHT,eAAe;yBAHd,4CAA4C;8BADvC,qBAAqB;2BAGxB,kBAAkB;6BADhB,iDAAiD;qBANzD,YAAY;sBAUX,WAAW;yCAXQ,mDAAmD;+BAF7D,iBAAiB;wBAYxB,2BAA2B;iCAXlB,kCAAkC;+BAiBpC,uBAAuB;2BArD3B,kBAAkB;+BAmBd,sBAAsB;4BAlBzB,cAAc;kCACR,oBAAoB;6BACzB,gBAAgB;+BACd,sBAAsB;kCAMnB,kCAAkC;yBAH3C,gBAAgB;mBAFtB,oBAAoB;qBAGlB,UAAU;kBAoBb,SAAS;qBAnBN,YAAY;6BAiBJ,oBAAoB;4BACrB,mBAAmB;yBAhBtB,QAAQ;gCACQ,YAAY;wBAAZ,YAAY;wBAkB7B,eAAe;8BAjBT,eAAe;0BAUnB,4BAA4B;kCAHpB,uDAAuD;6BAK5D,wDAAwD;yBAD5D,qBAAqB;iCAHb,sDAAsD;qBAPlD,YAAY;wBA0BzB,WAAW;2BA1BE,YAAY;wBACzB,WAAW;0BAET,WAAW;0BADX,UAAU;0BAEV,iBAAiB;yBAIlB,UAAU;4BASP,qCAAqC;mCAC9B,4CAA4C;mCAC5C,4CAA4C;uBACxD,gCAAgC;gCAmCvB,uBAAuB;gCACF,2BAA2B;oCAA3B,2BAA2B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/ApiOverrides/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,KAAK,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/ApiOverrides/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,KAAK,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAiFlF,OAAO,EAAE,YAAY,EAAE,CAAA;AAEvB,QAAA,MAAM,YAAY;+BACkB;QAAE,GAAG,EAAC,YAAY,GAAC,SAAS,GAAC,aAAa,GAAC,kBAAkB,CAAC;QAAC,QAAQ,EAAC,OAAO,CAAA;KAAE,KAAE,OAAO,CAAC,cAAc,CAAC;qCAiDrG,cAAc,WAAW;QAAE,KAAK,CAAC,EAAC,OAAO,CAAA;KAAE,KAAE,OAAO,CAAC;QAAE,MAAM,EAAE,SAAS,GAAC,MAAM,CAAA;KAAE,CAAC;qBAWpG,OAAO,CAAC;QAAC,MAAM,EAAE,SAAS,GAAC,MAAM,CAAA;KAAC,CAAC;0BAOjC,YAAY,GAAC,SAAS,GAAC,aAAa,GAAC,kBAAkB;;;;gCAM5C,MAAM,cAAa,MAAM,kBAAiB,MAAM,oBAAmB,GAAG;;;6BAoB9E,MAAM;;qCAgBE,MAAM;8CAOQ,MAAM,KAAE,OAAO,CAAC;QAAE,aAAa,EAAC,iBAAiB,CAAC;QAAC,KAAK,EAAC,UAAU,CAAC;QAAC,gBAAgB,EAAC,kBAAkB,EAAE,CAAA;KAAE,GAAC,SAAS,CAAC;mCAUvI,MAAM;0BAOV,MAAM,eAAc,MAAM,KAAE,OAAO,CAAC;QAAC,aAAa,EAAC,MAAM,CAAC;QAAC,YAAY,EAAC,MAAM,CAAC;QAAC,eAAe,EAAC,MAAM,CAAC;QAAC,SAAS,EAAC,MAAM,CAAA;KAAE,GAAG,SAAS,CAAC;wCASzH,MAAM,eAAc,MAAM;CA0BrE,CAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { BroadcastResult, BroadcastTarget, DiscordPlayerStatsProps, PublicPlayerProps, ServersResponse } from "../../types";
|
|
2
|
+
export declare const BettorBotApi: {
|
|
3
|
+
setEnvironment: () => void;
|
|
4
|
+
getServers: () => Promise<ServersResponse>;
|
|
5
|
+
getDiscordStats: () => Promise<DiscordPlayerStatsProps[]>;
|
|
6
|
+
getPlayersByPlayerIds: (player_ids: string[]) => Promise<PublicPlayerProps[]>;
|
|
7
|
+
broadcastMessage: (message: string, targets: BroadcastTarget[]) => Promise<BroadcastResult[]>;
|
|
8
|
+
};
|
|
9
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/BettorBot/api/index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,eAAe,EAAE,eAAe,EAAE,uBAAuB,EAAE,iBAAiB,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAIjI,eAAO,MAAM,YAAY;;sBAMD,OAAO,CAAC,eAAe,CAAC;2BAYnB,OAAO,CAAC,uBAAuB,EAAE,CAAC;wCAQlB,MAAM,EAAE,KAAE,OAAO,CAAC,iBAAiB,EAAE,CAAC;gCAQ9C,MAAM,WAAU,eAAe,EAAE,KAAE,OAAO,CAAC,eAAe,EAAE,CAAC;CAQjG,CAAA"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { BroadcastResult, FocusPositionProps, ServerInfo } from '../../types';
|
|
3
|
+
type BroadcastMessageCardProps = {
|
|
4
|
+
selected_servers: {
|
|
5
|
+
guild_id: string;
|
|
6
|
+
channels: string[];
|
|
7
|
+
}[];
|
|
8
|
+
onClose: () => void;
|
|
9
|
+
servers: ServerInfo[];
|
|
10
|
+
onFocusPosition?: (pos: FocusPositionProps) => void;
|
|
11
|
+
onSendMessage: (results: BroadcastResult[]) => void;
|
|
12
|
+
};
|
|
13
|
+
declare const BroadcastMessageCard: ({ selected_servers, servers, onSendMessage, onFocusPosition, onClose }: BroadcastMessageCardProps) => React.JSX.Element;
|
|
14
|
+
export default BroadcastMessageCard;
|
|
15
|
+
//# sourceMappingURL=BroadcastMessageCard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BroadcastMessageCard.d.ts","sourceRoot":"","sources":["../../../../../src/BettorBot/components/BroadcastMessageCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAExC,OAAO,KAAK,EAAE,eAAe,EAAmB,kBAAkB,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAMpG,KAAK,yBAAyB,GAAG;IAC7B,gBAAgB,EAAE;QAAE,QAAQ,EAAC,MAAM,CAAC;QAAC,QAAQ,EAAC,MAAM,EAAE,CAAA;KAAE,EAAE,CAAC;IAC3D,OAAO,EAAC,MAAM,IAAI,CAAC;IACnB,OAAO,EAAC,UAAU,EAAE,CAAC;IACrB,eAAe,CAAC,EAAC,CAAC,GAAG,EAAC,kBAAkB,KAAK,IAAI,CAAC;IAClD,aAAa,EAAC,CAAC,OAAO,EAAC,eAAe,EAAE,KAAK,IAAI,CAAA;CACpD,CAAA;AACD,QAAA,MAAM,oBAAoB,GAAI,wEAAuE,yBAAyB,sBA6I7H,CAAA;AAED,eAAe,oBAAoB,CAAA"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ServerInfo } from '../../types';
|
|
3
|
+
type ServerInfoProps = {
|
|
4
|
+
server: ServerInfo;
|
|
5
|
+
selected_channels: string[];
|
|
6
|
+
onClose: () => void;
|
|
7
|
+
onSelectChannel: (channel_id: string) => void;
|
|
8
|
+
onDeselectChannel: (channel_id: string) => void;
|
|
9
|
+
};
|
|
10
|
+
declare const ServerInfoCard: ({ server, selected_channels, onDeselectChannel, onSelectChannel, onClose }: ServerInfoProps) => React.JSX.Element;
|
|
11
|
+
export default ServerInfoCard;
|
|
12
|
+
//# sourceMappingURL=ServerInfoCard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ServerInfoCard.d.ts","sourceRoot":"","sources":["../../../../../src/BettorBot/components/ServerInfoCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAExC,OAAO,KAAK,EAAqB,UAAU,EAAE,MAAM,aAAa,CAAC;AAKjE,KAAK,eAAe,GAAG;IACnB,MAAM,EAAC,UAAU,CAAA;IACjB,iBAAiB,EAAE,MAAM,EAAE,CAAC;IAC5B,OAAO,EAAC,MAAM,IAAI,CAAC;IACnB,eAAe,EAAE,CAAC,UAAU,EAAC,MAAM,KAAK,IAAI,CAAC;IAC7C,iBAAiB,EAAE,CAAC,UAAU,EAAC,MAAM,KAAK,IAAI,CAAA;CACjD,CAAA;AACD,QAAA,MAAM,cAAc,GAAI,4EAA2E,eAAe,sBAwDjH,CAAA;AAED,eAAe,cAAc,CAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { FocusPositionProps, MyPlayerProps } from '../types';
|
|
3
|
+
type BettorBotDashboardProps = {
|
|
4
|
+
me?: MyPlayerProps;
|
|
5
|
+
onFocusPosition?: (pos: FocusPositionProps) => void;
|
|
6
|
+
};
|
|
7
|
+
declare const BettorBotDashboard: ({ me, onFocusPosition }: BettorBotDashboardProps) => React.JSX.Element;
|
|
8
|
+
export default BettorBotDashboard;
|
|
9
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/BettorBot/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAGnD,OAAO,KAAK,EAA2B,kBAAkB,EAAE,aAAa,EAAiC,MAAM,UAAU,CAAC;AAS1H,KAAK,uBAAuB,GAAG;IAC3B,EAAE,CAAC,EAAC,aAAa,CAAC;IAClB,eAAe,CAAC,EAAC,CAAC,GAAG,EAAC,kBAAkB,KAAK,IAAI,CAAC;CACrD,CAAA;AAGD,QAAA,MAAM,kBAAkB,GAAI,yBAAwB,uBAAuB,sBAkR1E,CAAA;AAED,eAAe,kBAAkB,CAAA"}
|