You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat!: return Provider[] from provider factories (#287)
# Refactors
- Use `Provider[]` return type for provider factories to keep more
options open in the future.
BREAKING CHANGE:
- `provideLocalRouterStore` returns `Provider[]` instead of `Provider`
- `provideGlobalRouterStore` returns `Provider[]` instead of `Provider`
No changes required in `providers` arrays, for example the following
usage remains the same:
```typescript
@component({
// (...)
providers: [provideLocalRouterStore()],
})
// (...)
```
0 commit comments