Skip to content

Commit

Permalink
fix: update typing AuthorizeParams
Browse files Browse the repository at this point in the history
- update AuthorizeParams typings.  The state should allow for any arbitrary string.  fixes intuit#103
  • Loading branch information
Edgar Sherman committed Oct 2, 2023
1 parent 6d3d141 commit 6348dfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ declare namespace OAuthClient {

export interface AuthorizeParams {
scope: scopes | scopes[] | string;
state?: csrf;
state?: csrf | string;
}

export interface RevokeParams {
Expand Down

0 comments on commit 6348dfc

Please sign in to comment.