mirror of
https://github.com/kmitresse/Compo-Service-Log-Project.git
synced 2026-07-09 12:07:45 +00:00
refactor: DMN files
This commit is contained in:
@@ -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 };
|
||||
Reference in New Issue
Block a user