build(spf): build26 from 45504a2b

This commit is contained in:
publish
2026-08-05 18:57:39 +02:00
commit 8920135306
424 changed files with 17907 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import { ReadonlySignal } from "./signals/primitives.js";
import "../index.js";
//#region src/core/machine.d.ts
/**
* Base snapshot for all machine-like primitives (Actors and Reactors).
* Carries only the finite state value. Actors extend this with `context`.
*/
interface MachineSnapshot<State extends string> {
value: State;
}
/**
* Shared interface for all machine-like primitives.
* Both Actors (message-driven) and Reactors (signal-driven) implement this.
*/
interface Machine<Snapshot extends MachineSnapshot<string>> {
readonly snapshot: ReadonlySignal<Snapshot>;
destroy(): void;
}
//#endregion
export { Machine, MachineSnapshot };
//# sourceMappingURL=machine.d.ts.map