()
| 117 | } |
| 118 | |
| 119 | get functions(): {[key: string]: ISignatureDef} { |
| 120 | return Object.keys(this._functions).reduce((map, key) => { |
| 121 | map[key] = this._functions[key].signature; |
| 122 | return map; |
| 123 | }, {} as {[key: string]: ISignatureDef}); |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * |
nothing calls this directly
no outgoing calls
no test coverage detected