API Reference

IWatchFactorytype

Keyed watch factory contract used by runtime services.

Overview

Watch-factory runtime that provides keyed, reference-counted watch handles and zero-allocation listener dispatch hooks.

Declaration

export type IWatchFactory = IKeyedInstanceFactory<
  number,
  IWatchData,
  IWatch,
  IWatchId
>;

Import

import type { IWatchFactory } from '@rs-x/state-manager';