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

12 lines
299 B
TypeScript

interface WorldEntityInterface extends WorldInterface {
names: Promise<WorldNameEntityInterface[]>;
works: Promise<WorkEntityInterface[]>;
worldCharacters: Promise<WorldCharacterEntityInterface[]>;
parents: Promise<WorldEntityInterface[]>;
children: Promise<WorldEntityInterface[]>;
}