@servicenow/sdk - v4.4.1
    Preparing search index...

    Interface DiagnosticMessageChain

    A linked list of formatted diagnostic messages to be used as part of a multiline message. It is built from the bottom up, leaving the head to be the "main" diagnostic. While it seems that DiagnosticMessageChain is structurally similar to DiagnosticMessage, the difference is that messages are all preformatted in DMC.

    interface DiagnosticMessageChain {
        category: tsc.DiagnosticCategory;
        code: number;
        messageText: string;
        next?: tsc.DiagnosticMessageChain[];
    }
    Index

    Properties

    code: number
    messageText: string