Interface JustJSON<T>

interface JustJSON<T> {
    value: T;
    variant: "Just";
}

Type Parameters

  • T

Properties

Properties

value: T
variant: "Just"