mirror of
https://github.com/kmitresse/Compo-Service-Log-Project.git
synced 2026-05-13 17:11:49 +00:00
11 lines
304 B
TypeScript
11 lines
304 B
TypeScript
import { ModdleElement } from "./ModdleElement";
|
|
|
|
const _DMN_RuleAnnotationClause: "dmn:RuleAnnotationClause" =
|
|
"dmn:RuleAnnotationClause";
|
|
|
|
interface RuleAnnotationClause extends ModdleElement {
|
|
$type: typeof _DMN_RuleAnnotationClause;
|
|
}
|
|
|
|
export { RuleAnnotationClause, _DMN_RuleAnnotationClause };
|