initial commit

This commit is contained in:
2026-03-22 03:21:45 +02:00
commit 897fea9f4e
15431 changed files with 2548840 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
import Activity from './Activity';
import Transition from './Transition';
declare class Procedure {
name: string;
uri: string;
activities: {
[key: string]: Activity;
};
local_inits: {
[key: string]: string;
};
param_inits: {
[key: string]: string;
};
transitions: {
[key: string]: Transition[];
};
exceptions: {
[key: string]: Transition[];
};
procedureConstructor: any;
constructor(name: string, uri: string, local_inits: {
[key: string]: string;
}, param_inits: {
[key: string]: string;
});
add_transition(transition: Transition): void;
add_activity(activity: Activity): void;
toBehaviorifyable(): any;
}
export default Procedure;