Skip to content

@loontail/minecraft-kit / MinecraftProfile

Type Alias: MinecraftProfile

ts
type MinecraftProfile = {
  skins: ReadonlyArray<MojangProfileSkin>;
  username: string;
  uuid: PlayerUuid;
};

Defined in: src/types/auth.ts:113

Snapshot of /minecraft/profile — uuid + display name + every skin slot Mojang has issued. Returned by every kit.auth.profile.* mutation so callers can refresh their UI without an extra round-trip.

Properties

PropertyModifierTypeDefined in
skinsreadonlyReadonlyArray<MojangProfileSkin>src/types/auth.ts:116
usernamereadonlystringsrc/types/auth.ts:115
uuidreadonlyPlayerUuidsrc/types/auth.ts:114

MIT License