Skip to content

Commit

Permalink
post publish v3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmantz committed Jul 14, 2018
1 parent 6be8c4f commit 3bb160d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ declare module 'redux-oidc' {
readonly route?: string;
}

export class CallbackComponent extends React.Component<CallbackComponentProps, void> { }
export class CallbackComponent extends React.Component<CallbackComponentProps> { }

export interface OidcProviderProps<TSTate> {
readonly userManager: UserManager;
readonly store: Store<TSTate>;
}

export class OidcProvider<TState> extends React.Component<OidcProviderProps<TState>, void> { }
export class OidcProvider<TState> extends React.Component<OidcProviderProps<TState>> { }

// Components
export function createUserManager(options: UserManagerSettings): UserManager;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "redux-oidc",
"version": "3.0.1",
"version": "3.0.2",
"description": "A package for managing OpenID Connect authentication in redux apps",
"main": "dist/redux-oidc.js",
"types": "./index.d.ts",
Expand Down

0 comments on commit 3bb160d

Please sign in to comment.