/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { UserPartial } from './user'; export interface IssueVotes { votes: number; hasVoted: boolean; self?: string; voters?: UserPartial[]; } //# sourceMappingURL=issue_vote.d.ts.map