RenaiApp/src/shared/types/entity-api/entities/world-character.d.ts

12 lines
344 B
TypeScript

interface WorldCharacterEntityInterface extends WorldCharacterInterface {
names: Promise<WorldCharacterNameEntityInterface[]>;
workCharacters: Promise<WorkCharacterEntityInterface[]>;
worlds: Promise<WorldEntityInterface[]>;
parents: Promise<WorldCharacterEntityInterface[]>;
children: Promise<WorldCharacterEntityInterface[]>;
}