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

8 lines
203 B
TypeScript

interface WorkAuthorEntityInterface extends WorkAuthorInterface {
work: Promise<WorkEntityInterface>;
authorRoles: Promise<AuthorRoleEntityInterface[]>;
author: Promise<AuthorEntityInterface>;
}