()
| 110 | } |
| 111 | |
| 112 | get outputNodes(): string[] { |
| 113 | return this._outputs.map((node) => { |
| 114 | const name = node.signatureKey || node.name; |
| 115 | return node.defaultOutput ? (`${name}:${node.defaultOutput}`) : name; |
| 116 | }); |
| 117 | } |
| 118 | |
| 119 | get functions(): {[key: string]: ISignatureDef} { |
| 120 | return Object.keys(this._functions).reduce((map, key) => { |
nothing calls this directly
no outgoing calls
no test coverage detected