@servicenow/sdk - v4.4.1
    Preparing search index...
    interface JSDocStructure {
        description?: string | WriterFunction;
        kind: JSDoc;
        leadingTrivia?: string | WriterFunction | (string | WriterFunction)[];
        tags?: OptionalKind<JSDocTagStructure>[];
        trailingTrivia?: string | WriterFunction | (string | WriterFunction)[];
    }

    Hierarchy (View Summary)

    • Structure
    • JSDocSpecificStructure
      • JSDocStructure
    Index

    Properties

    description?: string | WriterFunction

    The description of the JS doc.

    To force this to be multi-line, add a newline to the front of the string.

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

    Leading comments or whitespace.

    JS doc tags (ex. &#64;param value - Some description.).

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

    Trailing comments or whitespace.