You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raises the following Typescript compilation error:
scripts/loginAndGetGoogleToken.ts:21:18 - error TS2345: Argument of type 'Promise<any>' is not assignable to parameter of type 'string'.
21 res.redirect(authURL);
~~~~~~~
Because microsoft/TypeScript#19139 is still open, there is no way to fix this without changing the documentation.
The doc for this method should be changed, and mention that it returns a String instead.
The text was updated successfully, but these errors were encountered:
See https://github.com/esteban-uo/picasa/blob/master/src/picasa.js#L129
getAuthUrl
directly returns a String, but the doc mentions a Promise.Using the code as follows :
raises the following Typescript compilation error:
Because microsoft/TypeScript#19139 is still open, there is no way to fix this without changing the documentation.
The doc for this method should be changed, and mention that it returns a String instead.
The text was updated successfully, but these errors were encountered: