Lager - v5.2.0
    Preparing search index...

    Interface stdErrorType

    Type definition for standard error objects.

    This type represents an error object that can optionally include a name, title, message, stack trace, and a type indicating the nature of the error (either 'danger' or 'success').

    stdErrorType

    interface stdErrorType {
        message: string;
        name?: string;
        stack: string;
        title?: string;
        type: "danger" | "success";
    }
    Index

    Properties

    message: string

    The message describing the error.

    name?: string

    The name of the error.

    stack: string

    The stack trace of the error.

    title?: string

    The title of the error.

    type: "danger" | "success"

    The type indicating the nature of the error.