(id: string)
| 69 | * @public |
| 70 | */ |
| 71 | export function getNode<T = unknown>(id: string): FormKitNode<T> | undefined { |
| 72 | return registry.get(id) as FormKitNode<T> | undefined |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * Resets the entire registry. Deregisters all nodes and removes all listeners. |
no outgoing calls
no test coverage detected