Interface OkJSON<T>

interface OkJSON<T> {
    value: T;
    variant: "Ok";
}

Type Parameters

  • T

Properties

Properties

value: T
variant: "Ok"