interface ErrorWithDiff {
    actual?: any;
    cause?: unknown;
    diff?: string;
    expected?: any;
    frame?: string;
    message: string;
    name: string;
    nameStr?: string;
    operator?: string;
    showDiff?: boolean;
    stack?: string;
    stackStr?: string;
    stacks?: ParsedStack[];
    type?: string;
}

Hierarchy

Properties

actual?: any
cause?: unknown
diff?: string
expected?: any
frame?: string
message: string
name: string
nameStr?: string
operator?: string
showDiff?: boolean
stack?: string
stackStr?: string
stacks?: ParsedStack[]
type?: string

Generated using TypeDoc