remove debug and cleanup
All checks were successful
deploy / deploy (push) Successful in 58s

This commit is contained in:
Lee
2023-10-23 06:16:51 +01:00
parent 2b91388b95
commit 1001e68e1a
5 changed files with 31 additions and 11 deletions

View File

@ -50,7 +50,7 @@ async function searchByName(
* @param playerId the id of the player
* @returns the player info
*/
async function getPlayerInfo(
async function fetchPlayerData(
playerId: string,
): Promise<ScoresaberPlayer | undefined | null> {
const response = await fetchQueue.fetch(
@ -201,7 +201,7 @@ async function fetchTopPlayers(
export const ScoreSaberAPI = {
searchByName,
getPlayerInfo,
fetchPlayerData,
fetchScores,
fetchAllScores,
fetchTopPlayers,