A function with which a property path can be constructed using dot-notation.
The following corresponds to /members/0/msg:
/members/0/msg
(data) => data.members[0].msg Copy
(data) => data.members[0].msg
Relative paths are supported through the context argument:
context
(_, context) => context.contact.email Copy
(_, context) => context.contact.email
corresponds to the relative path contact/email.
contact/email
The type of the model data.
The type of the context data.
The type of the selected property.
Generated using TypeDoc
A function with which a property path can be constructed using dot-notation.
Example
The following corresponds to
/members/0/msg
:Relative paths are supported through the
context
argument:corresponds to the relative path
contact/email
.