mirror of
https://github.com/kmitresse/Compo-Service-Log-Project.git
synced 2026-05-13 17:11:49 +00:00
feat: Get json dataset from stream, convert into NudgerData, start to implement DMN concepts
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import { ModdleElement } from "./ModdleElement";
|
||||
import { DMN_InformationItem } from "./DMN_InformationItem";
|
||||
|
||||
export const _DMN_InputData: "dmn:InputData" = "dmn:InputData";
|
||||
|
||||
export interface DMN_InputData extends ModdleElement {
|
||||
$type: typeof _DMN_InputData;
|
||||
name: string;
|
||||
variable?: DMN_InformationItem;
|
||||
}
|
||||
|
||||
export function Is_DMN_InputData(me: ModdleElement): me is DMN_InputData {
|
||||
return "$type" in me && me.$type === _DMN_InputData;
|
||||
}
|
||||
Reference in New Issue
Block a user