( node: RootNode | TemplateChildNode, )
| 361 | } |
| 362 | |
| 363 | export function isSlotOutlet( |
| 364 | node: RootNode | TemplateChildNode, |
| 365 | ): node is SlotOutletNode { |
| 366 | return node.type === NodeTypes.ELEMENT && node.tagType === ElementTypes.SLOT |
| 367 | } |
| 368 | |
| 369 | const propsHelperSet = new Set([NORMALIZE_PROPS, GUARD_REACTIVE_PROPS]) |
| 370 |
no outgoing calls
no test coverage detected