Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(types)(middleware/devtools): avoid copying types #1991

Merged
merged 8 commits into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
hack for old ts
  • Loading branch information
dai-shi committed Aug 12, 2023
commit f74359c09745100d6ba1c8ddf8b0fc0b90557b31
2 changes: 2 additions & 0 deletions .github/workflows/test-old-typescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
fail-fast: false
matrix:
typescript:
- 5.1.6
- 5.0.4
- 4.9.5
- 4.8.4
- 4.7.4
Expand Down
1 change: 1 addition & 0 deletions src/middleware/devtools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ type StoreDevtools<S> = S extends {
: never

export interface DevtoolsOptions extends Config {
name?: string
enabled?: boolean
anonymousActionType?: string
store?: string
Expand Down