| 18 | type UnionTypes = Object|number|string|boolean; |
| 19 | |
| 20 | interface Object { |
| 21 | [key: string]: Object|number|string|boolean|Array<UnionTypes>; |
| 22 | } |
| 23 | |
| 24 | interface DPSObject { |
| 25 | dps: Object; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…