Interface MapError<T>

The error xaa.map will throw if something went wrong.

Contains a partial field for result mapped before error was encountered.

interface MapError<T> {
    message: string;
    name: string;
    partial: T[];
    stack?: string;
}

Type Parameters

  • T

Hierarchy

  • Error
    • MapError

Properties

message: string
name: string
partial: T[]

the result that has been mapped before error was encountered

stack?: string