(x: any)
| 596 | |
| 597 | // deno-lint-ignore no-explicit-any |
| 598 | function isComputedSignal(x: any): x is ReadonlySignal { |
| 599 | return isSignal(x) && |
| 600 | (("x" in x && typeof x.x === "function") || |
| 601 | "_fn" in x && typeof x._fn === "function"); |
| 602 | } |
| 603 | |
| 604 | // deno-lint-ignore no-explicit-any |
| 605 | function isVNode(x: any): x is VNode { |
no test coverage detected