mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 01:13:25 +01:00
also declare and export app and framework
This commit is contained in:
parent
0b8c108279
commit
b95cdcb3c0
4
api/js/jsapi/egw_global.d.ts
vendored
4
api/js/jsapi/egw_global.d.ts
vendored
@ -1238,7 +1238,7 @@ declare interface IegwWndLocal extends IegwGlobal
|
||||
* @param _isHtml true: add a html (no automatic quoting!), false (default): add as text
|
||||
* @param _options tooltip options
|
||||
*/
|
||||
tooltipBind(_elem : HTMLElement, _str : string, _isHtml? : boolean, _options);
|
||||
tooltipBind(_elem : HTMLElement, _str : string, _isHtml? : boolean, _options? : any);
|
||||
/**
|
||||
* Unbinds the tooltip from the given DOM-Node.
|
||||
*
|
||||
@ -1362,6 +1362,8 @@ declare function egwIsMobile() : string|null;
|
||||
|
||||
declare var mailvelope : any;
|
||||
|
||||
declare var framework : any;
|
||||
|
||||
declare function egw_refresh(_msg : string, app : string, id? : string|number, _type?, targetapp?, replace?, _with?, msgtype?);
|
||||
declare function egw_open();
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
//export var app = window.app;
|
||||
export var egw = window.egw;
|
||||
export var framework = window.framework;
|
||||
export var app = window.app;
|
||||
export var egw_getFramework = window.egw_getFramework;
|
||||
export var jQuery = window.jQuery;
|
Loading…
Reference in New Issue
Block a user