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

    Interface ActionItem

    An action item assigned during the meeting.

    interface ActionItem {
        assignee?: string;
        completed?: boolean;
        dueDate?: string;
        id: string;
        text: string;
    }
    Index

    Properties

    assignee?: string

    Person responsible for the action item.

    completed?: boolean

    Whether the action item has been completed.

    dueDate?: string

    Due date as a display string (e.g., "2024-03-15").

    id: string

    Unique identifier.

    text: string

    Description of the action to be taken.