mirror of
https://github.com/kmitresse/Compo-Service-Log-Project.git
synced 2026-07-09 12:07:45 +00:00
feat: Get json dataset from stream, convert into NudgerData, start to implement DMN concepts
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import { ModdleElement } from "./ModdleElement";
|
||||
import { DMN_UnaryTests } from "./DMN_UnaryTests";
|
||||
import { DMN_LiteralExpression } from "./DMN_LiteralExpression";
|
||||
export const _DMN_DecisionRule: "dmn:DecisionRule" = "dmn:DecisionRule";
|
||||
|
||||
export interface DMN_DecisionRule extends ModdleElement {
|
||||
$type: typeof _DMN_DecisionRule;
|
||||
description: string;
|
||||
inputEntry: Array<DMN_UnaryTests>;
|
||||
outputEntry: Array<DMN_LiteralExpression>;
|
||||
}
|
||||
Reference in New Issue
Block a user