KC's Workspace
    Preparing search index...

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

    interface CommentRaws {
        before?: string;
        left?: string;
        right?: string;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    • Record<string, unknown>
      • CommentRaws

    Indexable

    • [key: string]: unknown
    Index

    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.