jmap-kit
    Preparing search index...

    Type Alias SetError<TCategory, TAdditionalType, TAdditionalObj>

    SetError: { description?: string | null } & (
        | { type: SetErrorType<TCategory>
        | TAdditionalType }
        | (
            TCategory extends "destroy"
                ? never
                : { properties?: string[]; type: "invalidProperties" }
        )
        | TAdditionalObj
    )

    Type Parameters

    Type Declaration

    • Optionaldescription?: string | null

      A description of the error to help with debugging that includes an explanation of what the problem was. This is a non-localised string and is not intended to be shown directly to end users.