docx
    Preparing search index...

    Type Alias ICommentOptions

    Options for creating a single comment.

    type ICommentOptions = {
        author?: string;
        children: readonly FileChild[];
        date?: Date;
        id: number;
        initials?: string;
    }
    Index

    Properties

    author?: string

    Name of the comment author

    children: readonly FileChild[]

    Content of the comment (typically paragraphs)

    date?: Date

    Date and time the comment was created

    id: number

    Unique identifier for the comment

    initials?: string

    Initials of the comment author