API Reference

IISequenceWithIdDatainterface

Data shape that pairs a sequence payload with its id.

Overview

Generates deterministic sequence-id handles per context and manages their lifecycle.
Quick facts
Kind
interface
Members
2
Package
@rs-x/core

Declaration

export interface IISequenceWithIdData {
  sequence: readonly unknown[];
  readonly id: string;
}

Import

import type { IISequenceWithIdData } from '@rs-x/core';

Members

2 members in this interface.

readonly id
propertyreadonly
readonly id: string

Type

string

sequence
property
sequence: readonly unknown[]

Type

readonly unknown[]