vue3-google-signin
vue3-google-signin copied to clipboard
Need token's iat and exp as part of DecodedGoogleUser
Is your feature request related to a problem? Please describe.
Can we have JWT token's iat and exp fields as part of DecodedGoogleUser?
Describe the solution you'd like
If you are fine with having these two fields as part of the DecodedGoogleUser, I can send a PR for same.
Something like below:
export interface DecodedGoogleUser {
email: string;
email_verified: boolean;
hd: string;
family_name: string;
given_name: string;
name: string;
id: string;
picture: string;
issued_at: number;
expires_at: number;
}
Sure, you can do a pr
Done. #68
thank you