( doc: PropertyMemberDoc, metadata: Map<string, any>, )
| 12 | * alias and input name will be returned. |
| 13 | */ |
| 14 | export function getInputBindingData( |
| 15 | doc: PropertyMemberDoc, |
| 16 | metadata: Map<string, any>, |
| 17 | ): PropertyBinding | undefined { |
| 18 | return getBindingPropertyData(doc, metadata, 'inputs', 'Input'); |
| 19 | } |
| 20 | |
| 21 | /** |
| 22 | * Detects whether the specified property member is an output. If the property is an output, the |
no test coverage detected
searching dependent graphs…