| 19 | } |
| 20 | |
| 21 | interface ObjectTypeWithType { |
| 22 | type: string; |
| 23 | [key: string]: any; |
| 24 | } |
| 25 | |
| 26 | export function extractTypesFromObjects(array: ObjectTypeWithType[]): string[] { |
| 27 | const types = new Set<string>(); |
nothing calls this directly
no outgoing calls
no test coverage detected