Skip to content

@loontail/minecraft-kit / OfflineAuth

Type Alias: OfflineAuth

ts
type OfflineAuth = {
  mode: typeof OFFLINE;
  username: string;
  uuid?: PlayerUuid;
};

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

Offline authentication.

Properties

PropertyModifierTypeDescriptionDefined in
modereadonlytypeof OFFLINE-src/types/auth.ts:46
usernamereadonlystring-src/types/auth.ts:47
uuid?readonlyPlayerUuidOptional explicit UUID. When omitted, a deterministic UUID is derived from the username.src/types/auth.ts:49

MIT License