JS quality improvement

- add missing declaration
This commit is contained in:
nathangray 2021-05-19 10:01:07 -06:00
parent 6971292be3
commit aad2a77666

View File

@ -1317,6 +1317,12 @@ declare function egw_getWindowInnerWidth() : number;
declare function egw_getWindowInnerHeight() : number;
declare function egw_getWindowOuterWidth() : number;
declare function egw_getWindowOuterHeight() : number;
/**
*
* @param {string} _mime current mime type
* @returns {object|null} returns object of filemanager editor hook
*/
declare function egw_get_file_editor_prefered_mimes(_mime : string) : {mime:string,edit:any,edit_popup?:any}|null;
// Youtube API golbal vars
declare var YT : any;