Interface StateInterface<V>

interface StateInterface<V> {
    name?: string;
    ref: string;
    status: Status;
    value?: V;
}

Type Parameters

  • V = any

Properties

Properties

name?: string
ref: string
status: Status
value?: V

Generated using TypeDoc