UNPKG

@yoroi/common

Version:
10 lines (8 loc) 294 B
/** * Flowtype definitions for monads * Generated by Flowgen from a Typescript Definition * Flowgen v1.21.0 */ import { Either } from "@yoroi/types"; declare export function isLeft<E, T>(either: Either<E, T>): boolean; declare export function isRight<E, T>(either: Either<E, T>): boolean;