(o: d.OutputTarget)
| 131 | o.type === DIST_COLLECTION; |
| 132 | |
| 133 | export const isOutputTargetDistCustomElements = (o: d.OutputTarget): o is d.OutputTargetDistCustomElements => |
| 134 | o.type === DIST_CUSTOM_ELEMENTS; |
| 135 | |
| 136 | export const isOutputTargetCopy = (o: d.OutputTarget): o is d.OutputTargetCopy => o.type === COPY; |
| 137 |
no outgoing calls
no test coverage detected