Appearance
@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
| Property | Modifier | Type | Description | Defined in |
|---|---|---|---|---|
mode | readonly | typeof OFFLINE | - | src/types/auth.ts:46 |
username | readonly | string | - | src/types/auth.ts:47 |
uuid? | readonly | PlayerUuid | Optional explicit UUID. When omitted, a deterministic UUID is derived from the username. | src/types/auth.ts:49 |