/** * This type represent the model of an author */ export type AuthorResponse = { /** * The unique author id */ authorId: string; /** * The author email */ email: string; /** * This author full name */ fullName: string; };