handle integer and checkbox in functional attribute.
[ccsdk/cds.git] / cds-ui / designer-client / src / app / modules / feature-modules / packages / designer / model / desinger.nodeTemplate.model.ts
1 export class NodeTemplate {
2     type: string;
3     properties?: {
4         'dependency-node-templates'?: string[]
5     };
6     interfaces?: {};
7     artifacts?: {};
8     cabapilities?: {};
9     requirements?: {};
10
11     constructor(type) {
12         this.type = type;
13         this.properties = {};
14         this.artifacts = {};
15         this.interfaces = {};
16     }
17 }
18
19 export class NodeProcess {
20     inputs: {} = {};
21     outputs: {} = {};
22 }
23