mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 12:39:25 +01:00
Update some parameter types
This commit is contained in:
parent
e48000d149
commit
b03e8d167e
4
api/js/jsapi/egw_global.d.ts
vendored
4
api/js/jsapi/egw_global.d.ts
vendored
@ -264,7 +264,7 @@ declare interface IegwGlobal
|
|||||||
* @param _args optional parameters (%{number} replacements)
|
* @param _args optional parameters (%{number} replacements)
|
||||||
* @return {string}
|
* @return {string}
|
||||||
*/
|
*/
|
||||||
lang(_msg : string, ..._args : string[]) : string;
|
lang(_msg : string, ..._args : string[] | number[]) : string;
|
||||||
/**
|
/**
|
||||||
* Load default langfiles for an application: common, _appname, custom
|
* Load default langfiles for an application: common, _appname, custom
|
||||||
*
|
*
|
||||||
@ -639,7 +639,7 @@ declare interface IegwGlobal
|
|||||||
* @author Ryan Wheale
|
* @author Ryan Wheale
|
||||||
* @see http://www.foliotek.com/devblog/getting-the-width-of-a-hidden-element-with-jquery-using-width/
|
* @see http://www.foliotek.com/devblog/getting-the-width-of-a-hidden-element-with-jquery-using-width/
|
||||||
*/
|
*/
|
||||||
getHiddenDimensions(element : HTMLElement, boolOuter? : boolean) : {h: number, w: number, top: number, left: number};
|
getHiddenDimensions(element : HTMLElement | JQuery, boolOuter? : boolean) : {h: number, w: number, top: number, left: number};
|
||||||
/**
|
/**
|
||||||
* Store a window's name in egw.store so we can have a list of open windows
|
* Store a window's name in egw.store so we can have a list of open windows
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user