فهرست منبع

Flow interface: Fix extra property

martinRenou 5 سال پیش
والد
کامیت
0b987ee889
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      examples/jsm/nodes/core/Node.d.ts

+ 1 - 1
examples/jsm/nodes/core/Node.d.ts

@@ -3,7 +3,7 @@ import { NodeBuilder } from './NodeBuilder';
 export interface Flow {
   result: string;
   code: string;
-  extra: string;
+  extra: object;
 }
 
 export class Node {