Delete the empty phrase during update from 5.3 to 5.4
[GitHub/WoltLab/WCF.git] / global.d.ts
index 45b8cc974343fadb8fbae6ec1724ecd77a2cfeb4..ed6b3fb0291b7808df8f3312f80846b3748b52a2 100644 (file)
@@ -1,10 +1,11 @@
-import DatePicker from "./wcfsetup/install/files/ts/WoltLabSuite/Core/Date/Picker";
-import Devtools from "./wcfsetup/install/files/ts/WoltLabSuite/Core/Devtools";
-import DomUtil from "./wcfsetup/install/files/ts/WoltLabSuite/Core/Dom/Util";
-import * as ColorUtil from "./wcfsetup/install/files/ts/WoltLabSuite/Core/ColorUtil";
-import UiDropdownSimple from "./wcfsetup/install/files/ts/WoltLabSuite/Core/Ui/Dropdown/Simple";
+import DatePicker from "./ts/WoltLabSuite/Core/Date/Picker";
+import Devtools from "./ts/WoltLabSuite/Core/Devtools";
+import DomUtil from "./ts/WoltLabSuite/Core/Dom/Util";
+import * as ColorUtil from "./ts/WoltLabSuite/Core/ColorUtil";
+import * as EventHandler from "./ts/WoltLabSuite/Core/Event/Handler";
+import UiDropdownSimple from "./ts/WoltLabSuite/Core/Ui/Dropdown/Simple";
 import "@woltlab/zxcvbn";
-import { Reaction } from "./wcfsetup/install/files/ts/WoltLabSuite/Core/Ui/Reaction/Data";
+import { Reaction } from "./ts/WoltLabSuite/Core/Ui/Reaction/Data";
 
 declare global {
   interface Window {
@@ -20,6 +21,7 @@ declare global {
     WCF_PATH: string;
     WSC_API_URL: string;
 
+    Favico: any;
     jQuery: JQueryStatic;
     WCF: any;
     bc_wcfDomUtil: typeof DomUtil;
@@ -27,6 +29,7 @@ declare global {
     __wcf_bc_colorPickerInit?: () => void;
     __wcf_bc_colorUtil: typeof ColorUtil;
     __wcf_bc_datePicker: typeof DatePicker;
+    __wcf_bc_eventHandler: typeof EventHandler;
   }
 
   interface String {
@@ -37,6 +40,8 @@ declare global {
     sortable(...args: any[]): unknown;
 
     redactor(...args: any[]): unknown;
+
+    messageTabMenu(...args: any[]): unknown;
   }
 
   type ArbitraryObject = Record<string, unknown>;