From 95317ca2cba7bca6edce2c769f509999e1ce9507 Mon Sep 17 00:00:00 2001 From: Mitchell Wills Date: Wed, 19 Apr 2017 11:20:02 -0700 Subject: [PATCH] Fix types of some fields in gapi.auth2.AuthResponse --- types/gapi.auth2/index.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/types/gapi.auth2/index.d.ts b/types/gapi.auth2/index.d.ts index 402da68699..ee727ed27a 100644 --- a/types/gapi.auth2/index.d.ts +++ b/types/gapi.auth2/index.d.ts @@ -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; } /**