(plugin: TanStackDevtoolsPlugin, index: number)
| 97 | * |
| 98 | * A direct call, not a signal — an effect reacting to a signal runs a microtask |
| 99 | * later and every pointer move until then is lost. |
| 100 | */ |
| 101 | paneDragBridge: { |
| 102 | handler: |
| 103 | | ((pluginId: string, point: { x: number; y: number }) => void) |
| 104 | | null |
| 105 | } |
| 106 | }>() |
| 107 | |
| 108 | interface ContextProps { |
| 109 | children: JSX.Element |
| 110 | plugins?: Array<TanStackDevtoolsPlugin> |
| 111 | config?: TanStackDevtoolsConfig |
| 112 | onSetPlugins?: ( |
| 113 | setPlugins: (plugins: Array<TanStackDevtoolsPlugin>) => void, |
no outgoing calls
no test coverage detected