mark context as optional parameter

This commit is contained in:
Ralf Becker 2021-03-15 08:57:45 +02:00
parent 3fdf4057d6
commit fa0e7715c1

View File

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