Interface ErrJSON<E>

interface ErrJSON<E> {
    error: E;
    variant: "Err";
}

Type Parameters

  • E

Properties

Properties

error: E
variant: "Err"