Class DetailBaseService<T>Abstract
Type Parameters
- T extends { id: unknown }
Constructors
constructor
Type Parameters
- T extends { id: unknown }
Properties
Readonly
data
data: BehaviorSubject<null | T> = ... Readonly
pk
pk: BehaviorSubject<null | T["id"]> = ... Methods
Used for storing an object PK and data to let child components to subscribe, use, and change them.
Main parent component must load the PK from query params and set the PK. Load the data and set the data.