(maps: {[key: string]: string}[])
| 58 | } |
| 59 | |
| 60 | function mergeStringMaps(maps: {[key: string]: string}[]): {[key: string]: string} { |
| 61 | const result: {[key: string]: string} = {}; |
| 62 | maps.forEach((map) => { |
| 63 | Object.keys(map).forEach((prop) => { |
| 64 | result[prop] = map[prop]; |
| 65 | }); |
| 66 | }); |
| 67 | return result; |
| 68 | } |
| 69 | |
| 70 | const _CHILDREN = new InjectionToken('MultiMetric.children'); |
searching dependent graphs…