(key: string, value: google.maps.Map)
| 37 | } |
| 38 | |
| 39 | static push(key: string, value: google.maps.Map) { |
| 40 | if (!this.entries[key]) this.entries[key] = []; |
| 41 | |
| 42 | this.entries[key].push(value); |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | /** |
no outgoing calls
no test coverage detected