( doc: PropertyMemberDoc, metadata: Map<string, any>, )
| 23 | * alias and output name will be returned. |
| 24 | */ |
| 25 | export function getOutputBindingData( |
| 26 | doc: PropertyMemberDoc, |
| 27 | metadata: Map<string, any>, |
| 28 | ): PropertyBinding | undefined { |
| 29 | return getBindingPropertyData(doc, metadata, 'outputs', 'Output'); |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * Method that detects the specified type of property binding (either "output" or "input") from |
no test coverage detected
searching dependent graphs…