(type, f)
| 69873 | return containsType(target.types, source); |
| 69874 | } |
| 69875 | function forEachType(type, f) { |
| 69876 | return type.flags & 1048576 /* TypeFlags.Union */ ? ts.forEach(type.types, f) : f(type); |
| 69877 | } |
| 69878 | function someType(type, f) { |
| 69879 | return type.flags & 1048576 /* TypeFlags.Union */ ? ts.some(type.types, f) : f(type); |
| 69880 | } |
no test coverage detected
searching dependent graphs…