refactor: DMN files

This commit is contained in:
Lucàs
2024-10-07 21:31:53 +02:00
parent 510d25d9af
commit 3826e3f955
42 changed files with 505 additions and 372 deletions
+14
View File
@@ -0,0 +1,14 @@
import { ModdleElement } from "./ModdleElement";
const _DMN_UnaryTests: "dmn:UnaryTests" = "dmn:UnaryTests";
interface UnaryTests extends ModdleElement {
$type: typeof _DMN_UnaryTests;
text: string;
}
function Is_DMN_UnaryTests(me: ModdleElement): me is UnaryTests {
return "$type" in me && me.$type === _DMN_UnaryTests && "text" in me;
}
export { UnaryTests, _DMN_UnaryTests, Is_DMN_UnaryTests };