(instanceId: string)
| 7 | } |
| 8 | |
| 9 | export function useConfigUpdate<TConfig = Record<string, unknown>>(instanceId: string) { |
| 10 | const runtime = getRuntime() |
| 11 | return (patch: Partial<TConfig>) => runtime.onConfigUpdate(instanceId, patch as Record<string, unknown>) |
| 12 | } |
nothing calls this directly
no test coverage detected