This interface provides common properties to be used across all abstract syntax tree (AST) objects.

interface CommentASTPropaties {
    kind: CommentKind;
    location?: FileRange;
    value: string;
}

Hierarchy (view full)

Properties

Properties

A string that specifies the kind of comment.

location?: FileRange

The start and end location of the AST object.

value: string

A string that contains the actual content of the comment.

Generated using TypeDoc