We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba3ac50 commit fc47bf0Copy full SHA for fc47bf0
src/nodes/Node.ts
@@ -263,6 +263,7 @@ export class Node<MyEvents extends NodeEvents = NodeEvents>
263
*/
264
get nodeDataType(): IDataType | undefined {
265
//throw new Error(`Implement me...`);
266
+ return;
267
}
268
269
/**
src/properties/OutletProperty.ts
@@ -62,7 +62,7 @@ export class OutletProperty
62
* @param prop
63
* @returns
64
65
- outputProp(prop: string | ()=>string) {
+ outputProp(prop: string | (()=>string)) {
66
this._outputProp = prop;
67
return this;
68
0 commit comments