Type Alias ResultError

ResultError: LogMap & {
    error: string;
    kind: "error";
}

Result of a Misti operation that encountered an error.

Type declaration

  • error: string

    Error output when Misti cannot complete the requested operation.

  • kind: "error"