| 5 | } |
| 6 | |
| 7 | interface BaseCorePanelClass { |
| 8 | [key: string]: any |
| 9 | mount: <T extends HTMLElement>( |
| 10 | el: T, |
| 11 | props: TanStackDevtoolsPluginProps, |
| 12 | ) => void |
| 13 | unmount: () => void |
| 14 | } |
| 15 | |
| 16 | type CoreClassConstructor< |
| 17 | TComponentProps extends DevtoolsPanelProps, |
nothing calls this directly
no outgoing calls
no test coverage detected