Hiyve Components - v1.0.0
    Preparing search index...

    A single option within a poll.

    interface PollOption {
        id: string;
        text: string;
        votes: string[];
    }
    Index

    Properties

    Properties

    id: string

    Unique identifier for this option within the poll.

    text: string

    Display text for this option (e.g., "Yes", "No", or a custom answer).

    votes: string[]

    Array of user IDs that voted for this option.