From 6b1d7dfc652f47ab1af8c8eb935ff0f4b4bed6ab Mon Sep 17 00:00:00 2001 From: rsmithh Date: Fri, 11 Oct 2013 10:37:44 +0100 Subject: [PATCH] Added chrome.identity.getAuthToken --- chrome/chrome.d.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/chrome/chrome.d.ts b/chrome/chrome.d.ts index 4df325b19d..635cbc4d34 100644 --- a/chrome/chrome.d.ts +++ b/chrome/chrome.d.ts @@ -1056,6 +1056,15 @@ declare module chrome.history { var onVisitRemoved: HistoryVisitRemovedEvent; } + +//////////////////// +// Identity +//////////////////// +declare module chrome.identity { + var getAuthToken: (options:{}, cb:(token:{})=>void)=>void; +} + + //////////////////// // Internationalization ////////////////////