API Reference

IChangeCycleIndexinterface

Cycle payload emitted by start/end change-cycle streams, identifying (context, index) being processed.

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

Declaration

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

Import

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

Members

2 members in this interface.

context
property
context: unknown

Type

unknown

index
property
index: unknown

Type

unknown