interface IEitherSuccess<T> {
    result: T;
    type: "SUCCESS";
}

Type Parameters

  • T

Properties

Properties

result: T
type