A reactive model
the property on the model
the describing object that has a getter attached
Applies an rxjs operator to a getter that returns an observable
a decorator payload that is the context for the decorator
Stores Context information in a classes metadata. This information is stored via the property key that the decorator is applied to.
When a class is instantiated a corresponding metadata handler is created which take the provided metadata and applies it to the property (be that property, accessor or method).
Class handlers exist for each metadata type which know the way to retrieve and use this context.
object that contains the information you wish to store in a classes metadata.
Returns a decorator that will evaluate the decorated method and apply a single rxjs operator and corresponding function / data to its return.
the method context
Stores the necessary context information in the classes metadata via the property the decorator is attached to. At runtime this context information is retrieved and used by a custom built handler.
context information that is used by the associated metadata handler
Applies a series of property names within a classes metadata based on the applied methods property key. At runtime this function is used as a subscription to all properties previously mentioned.
a list of observable properties on a reactive model.
Stores context information in a classes metadata. This is used to provide a list of rxjs operators and functions / data that is stored until the class has been instantiated.
function context that has been passed via a method decorator
the arguments that were passed from the decorator itself.
Stores context information in a classes metadata. This is used to provide a list of rxjs operators and functions / data that is stored until the class has been instantiated.
These are then applied to an observable that is stored in the property.
function context that has been passed via a property decorator
the arguments that were passed from the decorator itself.
Determines if a the class property is a getter by checking if a property with a get function exists.
the property associated with the decorator location
Generated using TypeDoc
Applies a rxjs operator to an observable returned by the getter the decorator is attached to.