(type: any)
| 29 | export const TeleportEndKey: unique symbol = Symbol('_vte') |
| 30 | |
| 31 | export const isTeleport = (type: any): boolean => type.__isTeleport |
| 32 | |
| 33 | const isTeleportDisabled = (props: VNode['props']): boolean => |
| 34 | props && (props.disabled || props.disabled === '') |
no outgoing calls
no test coverage detected