Home
Using Smart NgRX
Demo Walkthrough
API
@smarttools/smart-ngrx / Function

rowProxySet

Generic types:T

This provides the set method of the Proxy in RowProxy

Presentation

function rowProxySet(
  target: RowProxy<T>,
  prop: string | symbol,
  value: unknown,
  services: { service: ActionService; parentService: ActionService },
): boolean;

Returns

boolean -

true if the property was set, false otherwise

Parameters

NameTypeDescription
target
RowProxy<T>

the RowProxy the Proxy targets

prop
string | symbol

the property the proxy needs to set

value
unknown

the value to set the property to

services
{ service: ActionService; parentService: ActionService; }

the services associated with the row and parent entity