From e06dd57152c4964ecb4fbd4f3f8d93abf931235c Mon Sep 17 00:00:00 2001 From: Hung Date: Tue, 9 Jun 2015 18:10:18 -0700 Subject: [PATCH] Update chrome.identity with new API version 29 For reference: https://developer.chrome.com/apps/identity#method-launchWebAuthFlow --- chrome/chrome.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/chrome/chrome.d.ts b/chrome/chrome.d.ts index 19d5c4d0bd..17c57c88d1 100755 --- a/chrome/chrome.d.ts +++ b/chrome/chrome.d.ts @@ -1082,6 +1082,7 @@ declare module chrome.history { //////////////////// declare module chrome.identity { var getAuthToken: (options: any, cb: (token: {}) => void) => void; + var launchWebAuthFlow: (options: any, cb: (redirect_url: string) => void) => void; }