From 674fdd2fc9658005fe7aebca9a552beb1205aa2a Mon Sep 17 00:00:00 2001 From: Alex Kozack Date: Tue, 5 Jul 2016 16:09:18 +0300 Subject: [PATCH] Add chrome.app.getDetails() function --- chrome/chrome-app.d.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/chrome/chrome-app.d.ts b/chrome/chrome-app.d.ts index 3b63357986..1019f4066c 100644 --- a/chrome/chrome-app.d.ts +++ b/chrome/chrome-app.d.ts @@ -6,6 +6,17 @@ /// /// +//////////////////// +// App +//////////////////// +declare namespace chrome.app { + interface AppDetails extends chrome.runtime.Manifest { + id: string; + } + + export function getDetails(): AppDetails; +} + //////////////////// // App Runtime ////////////////////