@servicenow/sdk - v4.4.1
    Preparing search index...
    interface JsxElementStructure {
        attributes?: (
            OptionalKind<JsxAttributeStructure>
            | JsxSpreadAttributeStructure
        )[];
        bodyText?: string;
        children?: (
            JsxSelfClosingElementStructure
            | OptionalKind<JsxElementStructure>
        )[];
        kind: JsxElement;
        leadingTrivia?: string | WriterFunction | (string | WriterFunction)[];
        name: string;
        trailingTrivia?: string | WriterFunction | (string | WriterFunction)[];
    }

    Hierarchy (View Summary)

    • Structure
    • JsxElementSpecificStructure
      • JsxElementStructure
    Index

    Properties

    bodyText?: string
    leadingTrivia?: string | WriterFunction | (string | WriterFunction)[]

    Leading comments or whitespace.

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

    Trailing comments or whitespace.