@mudssky/jsutils
    Preparing search index...

    Interface MachineSnapshot<TValue, TContext>

    状态机快照,保存当前状态值和值得持久化的上下文。

    interface MachineSnapshot<TValue extends string, TContext> {
        context: TContext;
        value: TValue;
    }

    Type Parameters

    • TValue extends string

      状态值字面量联合类型

    • TContext

      上下文对象类型

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    context: TContext
    value: TValue