mirror of
https://github.com/kmitresse/Compo-Service-Log-Project.git
synced 2026-05-13 17:11:49 +00:00
9 lines
301 B
TypeScript
9 lines
301 B
TypeScript
import { ModdleElement } from "./ModdleElement";
|
|
|
|
export const _DMN_DMNElementReference: "dmn:DMNElementReference" =
|
|
"dmn:DMNElementReference";
|
|
export interface DMN_DMNElementReference extends ModdleElement {
|
|
$type: typeof _DMN_DMNElementReference;
|
|
href: string; // Example: "#temperature_id"
|
|
}
|