Skip to content

Commit 874766d

Browse files
authored
Merge pull request #48 from jbottigliero/fix-ITokenResponse-type
fix: updates 'refresh_token' and 'refresh_expires_in' to be optional properties on the ITokenResponse
2 parents 091b149 + ab1c686 commit 874766d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ITokenResponse.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
export default interface ITokenResponse {
22
access_token: string;
33
expires_in: number;
4-
refresh_expires_in: number;
5-
refresh_token: string;
4+
refresh_expires_in?: number;
5+
refresh_token?: string;
66
scope: string;
77
token_type: string;
88
}

0 commit comments

Comments
 (0)