Interface SurveyResult

interface SurveyResult {
    answers: [string, Answer][];
    questionId: string;
    surveyId: string;
    voters: [string, Voter][];
}

Properties

answers: [string, Answer][]
questionId: string
surveyId: string
voters: [string, Voter][]