(type: Type)
| 82 | } |
| 83 | |
| 84 | export function isInterface(type: Type) { |
| 85 | return hasObjectFlag(type, ObjectFlags.Interface); |
| 86 | } |
| 87 | |
| 88 | export function isEnum(type: Type) { |
| 89 | const hasEnumFlag = hasFlag(type, TypeFlags.Enum); |
no test coverage detected
searching dependent graphs…