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