Interface: ReactiveModelAgumentations
Interface for augmenting ReactiveModel instances with additional properties or methods in advanced integrations. Integrations that add new properties to ReactiveModel should extend this interface via declaration merging.
Example
ts
declare module "@nhtio/web-re-active-record/augmentable" {
interface ReactiveModelAgumentations {
myCustomProp?: string;
}
}