started translating egw_action.js to ts

This commit is contained in:
Milan 2023-03-09 14:12:01 +01:00
parent 786b42cec6
commit a5f61e8ef8
3 changed files with 2262 additions and 1 deletions

View File

@ -162,6 +162,7 @@ export function egwActionHandler(_executeEvent)
/**
* Associative array where action classes may register themselves
* TODO(they never do??)
*/
if (typeof window._egwActionClasses == "undefined")
window._egwActionClasses = {};

File diff suppressed because it is too large Load Diff

View File

@ -863,7 +863,7 @@ declare interface IegwWndLocal extends IegwGlobal
* @param {object} _context
* @returns {mixed|Promise}
*/
applyFunc(_func : string|Function, args : Array<any>, _context? : Object) : Promise<any>|any
applyFunc(_func : string|Function, args : IArguments, _context? : Object) : Promise<any>|any
/**
* Registers a new handler plugin.