Skip to content

Commit

Permalink
Fix AnyAction comment in index.d.ts
Browse files Browse the repository at this point in the history
This PR replaces an accidentally incomplete comment above the `AnyAction` which was previously accidentally merged.
  • Loading branch information
joshburgess authored Dec 29, 2018
1 parent 21b5c51 commit 4e26257
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ export interface Action<T = any> {
/**
* An Action type which accepts any other properties.
* This is mainly for the use of the `Reducer` type.
* This is not part of `Action` itself to prevent users who are extending `Action.
* This is not part of `Action` itself to prevent types that extend `Action` from
* having an index signature.
*/
export interface AnyAction extends Action {
// Allows any extra properties to be defined in an action.
Expand Down

0 comments on commit 4e26257

Please sign in to comment.