interface CommentThreadContext {
    filePath?: string;
    leftFileEnd?: CommentPosition;
    leftFileStart?: CommentPosition;
    rightFileEnd?: CommentPosition;
    rightFileStart?: CommentPosition;
}

Properties

filePath?: string

File path relative to the root of the repository. It's up to the client to use any path format.

leftFileEnd?: CommentPosition

Position of last character of the thread's span in left file.

leftFileStart?: CommentPosition

Position of first character of the thread's span in left file.

rightFileEnd?: CommentPosition

Position of last character of the thread's span in right file.

rightFileStart?: CommentPosition

Position of first character of the thread's span in right file.