Fix types of some fields in gapi.auth2.AuthResponse

This commit is contained in:
Mitchell Wills
2017-04-19 11:20:02 -07:00
parent 4799512a30
commit 95317ca2cb
+3 -3
View File
@@ -131,9 +131,9 @@ declare namespace gapi.auth2 {
id_token: string;
login_hint: string;
scope: string;
expires_in: string;
first_issued_at: string;
expires_at: string;
expires_in: number;
first_issued_at: number;
expires_at: number;
}
/**