Interface CommentingRanges

The ranges a CommentingRangeProvider enables commenting on.

interface CommentingRanges {
    enableFileComments: boolean;
    ranges?: Range[];
}

Properties

enableFileComments: boolean

Enables comments to be added to a file without a specific range.

ranges?: Range[]

The ranges which allow new comment threads creation.