Interface UseObjectValueOptions<Value>

interface UseObjectValueOptions<Value> {
    converter?: UseObjectValueConverter<Value>;
    initialValue?: Value;
}

Type Parameters

  • Value

Properties

initialValue?: Value