@servicenow/sdk - v4.4.1
    Preparing search index...
    interface JSDocTagStructure {
        kind: JSDocTag;
        leadingTrivia?: string | WriterFunction | (string | WriterFunction)[];
        tagName: string;
        text?: string | WriterFunction;
        trailingTrivia?: string | WriterFunction | (string | WriterFunction)[];
    }

    Hierarchy (View Summary)

    • Structure
    • JSDocTagSpecificStructure
      • JSDocTagStructure
    Index

    Properties

    kind: JSDocTag
    leadingTrivia?: string | WriterFunction | (string | WriterFunction)[]

    Leading comments or whitespace.

    tagName: string

    The name for the JS doc tag that comes after the "at" symbol.

    text?: string | WriterFunction

    The text that follows the tag name.

    trailingTrivia?: string | WriterFunction | (string | WriterFunction)[]

    Trailing comments or whitespace.