Character
type Character = {
createdAt: Date;
data: CharacterData;
id: string;
name: string;
playerId: string;
slot: number;
updatedAt: Date;
};Defined in: src/modules/core/characters/types.ts:159
Full character object with all properties.
Properties
| Property | Type | Defined in |
|---|---|---|
createdAt | Date | src/modules/core/characters/types.ts:165 |
data | CharacterData | src/modules/core/characters/types.ts:164 |
id | string | src/modules/core/characters/types.ts:160 |
name | string | src/modules/core/characters/types.ts:163 |
playerId | string | src/modules/core/characters/types.ts:161 |
slot | number | src/modules/core/characters/types.ts:162 |
updatedAt | Date | src/modules/core/characters/types.ts:166 |