Skip to content

Interface: ReactiveQueryCollectionAgumentations ​

Interface for augmenting ReactiveQueryCollection instances with additional properties or methods in advanced integrations. Integrations that add new properties to ReactiveQueryCollection should extend this interface via declaration merging.

Example ​

ts
declare module "@nhtio/web-re-active-record/augmentable" {
  interface ReactiveQueryCollectionAgumentations {
    myCollectionFeature?: boolean;
  }
}