(config: Partial<TanStackDevtoolsInit>)
| 102 | } |
| 103 | |
| 104 | setConfig(config: Partial<TanStackDevtoolsInit>) { |
| 105 | this.#config = { |
| 106 | ...this.#config, |
| 107 | ...config, |
| 108 | } |
| 109 | if (config.plugins) { |
| 110 | this.#plugins = config.plugins |
| 111 | // Update the reactive store if mounted |
| 112 | if (this.#state === 'mounted' && this.#setPlugins) { |
| 113 | this.#setPlugins(config.plugins) |
| 114 | } |
| 115 | } |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | export type { ClientEventBusConfig } |
no outgoing calls
no test coverage detected