/** Details of an issue type. */
export interface IssueTypeInfo {
  /** The avatar of the issue type. */
  avatarId?: number;
  /** The ID of the issue type. */
  id?: number;
  /** The name of the issue type. */
  name?: string;
}
