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

14 lines
353 B
TypeScript

interface TagEntityInterface extends TagInterface {
names: Promise<TagNameEntityInterface[]>;
workTags: Promise<WorkTagEntityInterface[]>;
characterTags: Promise<CharacterTagEntityInterface[]>;
interactionTags: Promise<InteractionTagEntityInterface[]>;
parents: Promise<TagEntityInterface[]>;
children: Promise<TagEntityInterface[]>;
}