declare enum platforms { All = "all", Activision = "acti", Battlenet = "battle", PSN = "psn", Steam = "steam", Uno = "uno", XBOX = "xbl", ios = "ios", NULL = "_" } declare enum games { ModernWarfare = "mw", ModernWarfare2 = "mw2", Vanguard = "vg", ColdWar = "cw", NULL = "_" } declare enum friendActions { Invite = "invite", Uninvite = "uninvite", Remove = "remove", Block = "block", Unblock = "unblock" } declare const enableDebugMode: () => boolean; declare const disableDebugMode: () => boolean; declare const login: (ssoToken: string) => boolean; declare const telescopeLogin: (username: string, password: string) => Promise; declare class WZ { fullData: (gamertag: string, platform: platforms) => Promise; combatHistory: (gamertag: string, platform: platforms) => Promise; combatHistoryWithDate: (gamertag: string, startTime: number, endTime: number, platform: platforms) => Promise; breakdown: (gamertag: string, platform: platforms) => Promise; breakdownWithDate: (gamertag: string, startTime: number, endTime: number, platform: platforms) => Promise; matchInfo: (matchId: string, platform: platforms) => Promise; cleanGameMode: (mode: string) => Promise; } declare class MW { fullData: (gamertag: string, platform: platforms) => Promise; combatHistory: (gamertag: string, platform: platforms) => Promise; combatHistoryWithDate: (gamertag: string, startTime: number, endTime: number, platform: platforms) => Promise; breakdown: (gamertag: string, platform: platforms) => Promise; breakdownWithDate: (gamertag: string, startTime: number, endTime: number, platform: platforms) => Promise; matchInfo: (matchId: string, platform: platforms) => Promise; seasonloot: (gamertag: string, platform: platforms) => Promise; mapList: (platform: platforms) => Promise; } declare class MW2 { fullData: (unoId: string) => Promise; matches: (unoId: string) => Promise; matchInfo: (unoId: string, matchId: string) => Promise; } declare class WZ2 { fullData: (unoId: string) => Promise; matches: (unoId: string) => Promise; matchInfo: (unoId: string, matchId: string) => Promise; } declare class MW3 { fullData: (unoId: string) => Promise; matches: (unoId: string) => Promise; matchInfo: (unoId: string, matchId: string) => Promise; } declare class WZM { fullData: (unoId: string) => Promise; matches: (unoId: string) => Promise; matchInfo: (unoId: string, matchId: string) => Promise; } declare class CW { fullData: (gamertag: string, platform: platforms) => Promise; combatHistory: (gamertag: string, platform: platforms) => Promise; combatHistoryWithDate: (gamertag: string, startTime: number, endTime: number, platform: platforms) => Promise; breakdown: (gamertag: string, platform: platforms) => Promise; breakdownWithDate: (gamertag: string, startTime: number, endTime: number, platform: platforms) => Promise; seasonloot: (gamertag: string, platform: platforms) => Promise; mapList: (platform: platforms) => Promise; matchInfo: (matchId: string, platform: platforms) => Promise; } declare class VG { fullData: (gamertag: string, platform: platforms) => Promise; combatHistory: (gamertag: string, platform: platforms) => Promise; combatHistoryWithDate: (gamertag: string, startTime: number, endTime: number, platform: platforms) => Promise; breakdown: (gamertag: string, platform: platforms) => Promise; breakdownWithDate: (gamertag: string, startTime: number, endTime: number, platform: platforms) => Promise; seasonloot: (gamertag: string, platform: platforms) => Promise; mapList: (platform: platforms) => Promise; matchInfo: (matchId: string, platform: platforms) => Promise; } declare class SHOP { purchasableItems: (gameId: string) => Promise; bundleInformation: (title: string, bundleId: string) => Promise; battlePassLoot: (title: games, season: number, platform: platforms) => Promise; } declare class USER { friendFeed: (gamertag: string, platform: platforms) => Promise; eventFeed: () => Promise; loggedInIdentities: () => Promise; codPoints: (gamertag: string, platform: platforms) => Promise; connectedAccounts: (gamertag: string, platform: platforms) => Promise; settings: (gamertag: string, platform: platforms) => Promise; friendAction: (gamertag: string, platform: platforms, action: friendActions) => Promise; } declare class ALT { search: (gamertag: string, platform: platforms) => Promise; cleanWeapon: (weapon: string) => Promise; } declare const Warzone: WZ; declare const ModernWarfare: MW; declare const ModernWarfare2: MW2; declare const Warzone2: WZ2; declare const ModernWarfare3: MW3; declare const WarzoneMobile: WZM; declare const ColdWar: CW; declare const Vanguard: VG; declare const Store: SHOP; declare const Me: USER; declare const Misc: ALT; export { login, telescopeLogin, platforms, friendActions, Warzone, ModernWarfare, ModernWarfare2, ModernWarfare3, WarzoneMobile, Warzone2, ColdWar, Vanguard, Store, Me, Misc, enableDebugMode, disableDebugMode, };