Interface Comment

Comments allow the team to have one priceless conversation getting and providing feedback right over the designs and prototypes.

interface Comment {
    user: User;
    date: Date;
    content: string;
    remove(): void;
}

Properties

Methods

Properties

user: User

The user that has created the comment.

date: Date

The date the comment has been created.

content: string

The content for the commentary. The owner can modify the comment.

Methods

  • Remove the current comment from its comment thread. Only the owner can remove their comments. Requires the comment:write permission.

    Returns void