Extract the type of the error value from a Result type.
type VoteResult = Result<"yes" | "no", Error>;type VoteErr = ErrType<VoteResult>; // Error Copy
type VoteResult = Result<"yes" | "no", Error>;type VoteErr = ErrType<VoteResult>; // Error
Extract the type of the error value from a Result type.