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

feat: use generic on userinfo #263

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Joabesv
Copy link

@Joabesv Joabesv commented Jun 28, 2024

hi there, just adding to avoid an as Type, and generic is compatible with Object so it shouldn't break anything (as it already didn't)

Checklist

@@ -183,13 +183,13 @@ declare namespace fastifyOauth2 {

revokeAllToken(revokeToken: Token, httpOptions: Object | undefined): Promise<void>;

userinfo(tokenSetOrToken: Token | string): Promise<Object>;
userinfo<TUserInfo>(tokenSetOrToken: Token | string): Promise<TUserInfo>;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should not we set the default?

Suggested change
userinfo<TUserInfo>(tokenSetOrToken: Token | string): Promise<TUserInfo>;
userinfo<TUserInfo = Object>(tokenSetOrToken: Token | string): Promise<TUserInfo>;

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why so? the generic already serves as a default value

@Eomm Eomm requested a review from Uzlopak September 22, 2024 09:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants