@jsfkit/types
    Preparing search index...

    Type Alias ThreadedComment

    A threaded comment that is attached to an individual cell.

    type ThreadedComment = {
        datetime?: string;
        id: string;
        parentId?: string;
        personId: string;
        ref: CellId;
        resolved?: boolean;
        runs?: (MentionTextRun | HyperlinkTextRun)[];
        text: string;
    }
    Index

    Properties

    datetime?: string

    Date and time the comment was written, as an ISO formatted string.

    id: string

    Unique identifier for the comment.

    Excel always uses a UUID in the format {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}, but JSF makes no strict requirement.

    parentId?: string

    Unique identifier of the parent comment, if this is a reply in a thread.

    Excel always uses a UUID in the format {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}, but JSF makes no strict requirement.

    personId: string

    Unique identifier of the person who authored this comment. Use this to find the person's details in a workbook's list of people.

    Excel always uses a UUID in the format {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}, but JSF makes no strict requirement.

    ref: CellId

    A1-style reference to the cell this comment is attached to.

    resolved?: boolean

    Whether the comment has been marked as resolved.

    Text runs that annotate ranges within the comment text.

    text: string

    The comment text content.