API Reference

IWatchIdinterface

Identity key for a watch registration (context, index).

Overview

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

Declaration

export interface IWatchId {
  context: unknown;
  index: unknown;
}

Import

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

Members

2 members in this interface.

context
property
context: unknown

Type

unknown

index
property
index: unknown

Type

unknown