version_final_sans_test

This commit is contained in:
2025-09-23 14:51:00 +02:00
parent b4061e8aff
commit 6577083b06
184 changed files with 19853 additions and 512 deletions

View File

@@ -0,0 +1,6 @@
export type TaskState = 'stopped' | 'idle' | 'running' | 'destroyed';
export declare class StateMachine {
state: TaskState;
constructor(initial?: TaskState);
changeState(state: TaskState): void;
}