sesaparcours
    Preparing search index...

    Type Alias Signal

    type Signal = {
        head?: string;
        message: SignalMessage;
        origin?: SignalOrigin;
        severity?: "warning" | "error";
    }
    Index

    Properties

    head?: string

    If applicable, the head of the function about which the signal was raised

    message: SignalMessage

    An error/warning code or, a code with one or more arguments specific to the signal code.

    origin?: SignalOrigin

    Location where the signal was raised.

    severity?: "warning" | "error"