Add chrome.app.getDetails() function

This commit is contained in:
Alex Kozack
2016-07-05 16:09:18 +03:00
committed by GitHub
parent 42335c83ed
commit 674fdd2fc9

View File

@@ -6,6 +6,17 @@
/// <reference path="chrome.d.ts"/>
/// <reference path='../filesystem/filesystem.d.ts'/>
////////////////////
// App
////////////////////
declare namespace chrome.app {
interface AppDetails extends chrome.runtime.Manifest {
id: string;
}
export function getDetails(): AppDetails;
}
////////////////////
// App Runtime
////////////////////