Интерфейс ответа с голосованием

interface IAnswer {
    id: string;
    number: string;
    vote: "for" | "against" | "abstained";
}

Properties

Properties

id: string
number: string
vote: "for" | "against" | "abstained"