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