(type)
| 78584 | isTypeAssignableToKind(source, kind, strict); |
| 78585 | } |
| 78586 | function isConstEnumObjectType(type) { |
| 78587 | return !!(ts.getObjectFlags(type) & 16 /* ObjectFlags.Anonymous */) && !!type.symbol && isConstEnumSymbol(type.symbol); |
| 78588 | } |
| 78589 | function isConstEnumSymbol(symbol) { |
| 78590 | return (symbol.flags & 128 /* SymbolFlags.ConstEnum */) !== 0; |
| 78591 | } |
no test coverage detected