| 70 | } |
| 71 | |
| 72 | export interface Author { |
| 73 | id: string | undefined; |
| 74 | name: string | null; // Allow null |
| 75 | role?: string | null; |
| 76 | email?: string | null; |
| 77 | } |
| 78 | |
| 79 | export interface ExtendedQuestion extends Question { |
| 80 | author: Author; |
nothing calls this directly
no outgoing calls
no test coverage detected