(configPort: number)
| 7 | declare const __TANSTACK_DEVTOOLS_PROTOCOL__: 'http' | 'https' | undefined |
| 8 | |
| 9 | function getDefaultPort(configPort: number): number { |
| 10 | if (typeof __TANSTACK_DEVTOOLS_PORT__ !== 'undefined') |
| 11 | return __TANSTACK_DEVTOOLS_PORT__ |
| 12 | return configPort |
| 13 | } |
| 14 | |
| 15 | function getDefaultHost(configHost: string): string { |
| 16 | if (typeof __TANSTACK_DEVTOOLS_HOST__ !== 'undefined') |