Construct a type with a set of properties K of type T

interface CommentRaws {
    before?: string;
    left?: string;
    right?: string;
}

Hierarchy (view full)

  • Record<string, unknown>
    • CommentRaws

Properties

Properties

before?: string

The space symbols before the node.

left?: string

The space symbols between /* and the comment’s text.

right?: string

The space symbols between the comment’s text.