Overview
Generates deterministic sequence-id handles per context and manages their lifecycle.
API Reference
Data shape that pairs a sequence payload with its id.
export interface IISequenceWithIdData {
sequence: readonly unknown[];
readonly id: string;
}import type { IISequenceWithIdData } from '@rs-x/core';2 members in this interface.
readonly id: stringType
string
sequence: readonly unknown[]Type
readonly unknown[]