API Reference

IStateOptionsinterface

Watch options for ownerId, recursive indexWatchRule configuration, and initial emit suppression.

Quick facts
Kind
interface
Members
3
Package
@rs-x/core

Declaration

export interface IStateOptions {
  indexWatchRule?: IIndexWatchRule;
  ownerId?: unknown;
  suppressInitialChangeEmit?: boolean;
}

Import

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

Members

3 members in this interface.

indexWatchRule?
propertyoptional
indexWatchRule?: IIndexWatchRule
ownerId?
propertyoptional
ownerId?: unknown

Type

unknown

suppressInitialChangeEmit?
propertyoptional
suppressInitialChangeEmit?: boolean

Type

boolean