mirror of
https://github.com/kmitresse/Compo-Service-Log-Project.git
synced 2026-07-09 12:07:45 +00:00
12 lines
439 B
TypeScript
12 lines
439 B
TypeScript
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>;
|
|
}
|