(providerPlugins: any[])
| 984 | } |
| 985 | |
| 986 | async function stopRuntimeProviderPlugins(providerPlugins: any[]) { |
| 987 | await Promise.allSettled(providerPlugins.map((plugin) => plugin?.stop?.())); |
| 988 | } |
| 989 | |
| 990 | function formatError(error: unknown) { |
| 991 | if (error instanceof Error) { |
no test coverage detected