(
type: ISlotType,
returnObj?: boolean,
preferFreeSlot?: boolean,
doNotUseOccupied?: boolean,
)
| 2211 | doNotUseOccupied?: boolean, |
| 2212 | ): INodeOutputSlot |
| 2213 | findOutputSlotByType( |
| 2214 | type: ISlotType, |
| 2215 | returnObj?: boolean, |
| 2216 | preferFreeSlot?: boolean, |
| 2217 | doNotUseOccupied?: boolean, |
| 2218 | ) { |
| 2219 | return this.#findSlotByType( |
| 2220 | this.outputs, |
| 2221 | type, |
| 2222 | returnObj, |
| 2223 | preferFreeSlot, |
| 2224 | doNotUseOccupied, |
| 2225 | ) |
| 2226 | } |
| 2227 | |
| 2228 | /** |
| 2229 | * returns the output (or input) slot with a given type, -1 if not found |
no test coverage detected