File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -1144,8 +1144,8 @@ export class Container extends Primitive {
1144
1144
}
1145
1145
1146
1146
/**
1147
- * @param {Stock } start
1148
- * @param {Stock } end
1147
+ * @param {Stock | null } start
1148
+ * @param {Stock | null } end
1149
1149
* @param {(PrimitiveConfig & ValuedConfig & FlowConfig)= } config
1150
1150
*/
1151
1151
Flow ( start , end , config = { } ) {
@@ -1155,8 +1155,8 @@ export class Container extends Primitive {
1155
1155
}
1156
1156
1157
1157
/**
1158
- * @param {State } start
1159
- * @param {State } end
1158
+ * @param {State | null } start
1159
+ * @param {State | null } end
1160
1160
* @param {(PrimitiveConfig & TransitionConfig)= } config
1161
1161
*/
1162
1162
Transition ( start , end , config = { } ) {
@@ -1166,8 +1166,8 @@ export class Container extends Primitive {
1166
1166
}
1167
1167
1168
1168
/**
1169
- * @param {Primitive } start
1170
- * @param {Primitive } end
1169
+ * @param {Primitive | null } start
1170
+ * @param {Primitive | null } end
1171
1171
* @param {(PrimitiveConfig & LinkConfig)= } config
1172
1172
*/
1173
1173
Link ( start , end , config = { } ) {
@@ -1245,4 +1245,4 @@ export class Agent extends Container {
1245
1245
set agentParent ( value ) {
1246
1246
this . _node . setAttribute ( "AgentBase" , value ) ;
1247
1247
}
1248
- }
1248
+ }
You can’t perform that action at this time.
0 commit comments