Update sdk/js/player/query

Braydon 2024-04-15 07:41:09 -07:00
parent 532f2e876c
commit 68b0bf3e60

@ -3,13 +3,13 @@
## Example
```ts
import { getPlayer } from "restfulmc-lib";
import type { CachedPlayer } from "restfulmc-lib/dist/index";
import type { CachedPlayer, RestfulMCAPIError } from "restfulmc-lib/dist/index";
try {
const player: CachedPlayer = await getPlayer("Rainnny");
console.log(`Hello ${player.username}, your UUID is ${player.uniqueId}!`);
} catch (err) {
if ((err as ErrorResponse).code == 404) {
if ((err as RestfulMCAPIError).code == 404) {
console.error("Player with UUID or username not found.");
}
}