Skip to content

Commit fc47bf0

Browse files
committed
annotation errors...
1 parent ba3ac50 commit fc47bf0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/nodes/Node.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,7 @@ export class Node<MyEvents extends NodeEvents = NodeEvents>
263263
*/
264264
get nodeDataType(): IDataType | undefined {
265265
//throw new Error(`Implement me...`);
266+
return;
266267
}
267268

268269
/**

src/properties/OutletProperty.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export class OutletProperty
6262
* @param prop
6363
* @returns
6464
*/
65-
outputProp(prop: string | ()=>string) {
65+
outputProp(prop: string | (()=>string)) {
6666
this._outputProp = prop;
6767
return this;
6868
}

0 commit comments

Comments
 (0)