(type: ts.Type)
| 2 | import ts from "typescript" |
| 3 | |
| 4 | const isObjectType = (type: ts.Type): type is ts.ObjectType => |
| 5 | Boolean(type.flags & ts.TypeFlags.Object) |
| 6 | |
| 7 | const getTypeElementName = (element: ts.TypeElement) => { |
| 8 | const name = element.name |
no outgoing calls
no test coverage detected