File tree Expand file tree Collapse file tree
examples/react/bundling-repro/.wrangler/deploy
packages/devtools-utils/src/solid Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -58,4 +58,5 @@ vite.config.ts.timestamp-*
5858.angular
5959.nitro
6060.sonda
61- * settings.local.json
61+ * settings.local.json
62+ .claude /worktrees
Original file line number Diff line number Diff line change 1- { "configPath" : " ..\\ ..\\ dist\\ server\\ wrangler.json" , "auxiliaryWorkers" : [] }
1+ {"configPath" :" ..\\ ..\\ dist\\ server\\ wrangler.json" ,"auxiliaryWorkers" :[] }
Original file line number Diff line number Diff line change 11/** @jsxImportSource solid-js - we use Solid.js as JSX here */
22
3- import type { TanStackDevtoolsPluginProps } from '@tanstack/devtools'
43import { lazy } from 'solid-js'
54import { Portal , render } from 'solid-js/web'
65import type { JSX } from 'solid-js'
6+ import type { TanStackDevtoolsPluginProps } from '@tanstack/devtools'
77
88export function __mountComponent (
99 el : HTMLElement ,
1010 props : TanStackDevtoolsPluginProps ,
11- importFn : ( ) => Promise < { default : ( ) => JSX . Element } > ,
11+ importFn : ( ) => Promise < {
12+ default : ( props : TanStackDevtoolsPluginProps ) => JSX . Element
13+ } > ,
1214) : ( ) => void {
1315 const Component = lazy ( importFn )
1416 const ThemeProvider = lazy ( ( ) =>
Original file line number Diff line number Diff line change @@ -11,7 +11,9 @@ import type { JSX } from 'solid-js'
1111 * @returns Tuple containing the DevtoolsCore class and a NoOpDevtoolsCore class
1212 */
1313export function constructCoreClass (
14- importFn : ( ) => Promise < { default : ( ) => JSX . Element } > ,
14+ importFn : ( ) => Promise < {
15+ default : ( props : TanStackDevtoolsPluginProps ) => JSX . Element
16+ } > ,
1517) {
1618 class DevtoolsCore {
1719 #isMounted = false
You can’t perform that action at this time.
0 commit comments