Move the import block back to the original position
authorCyperghost <olaf_schmitz_1@t-online.de>
Tue, 15 Oct 2024 06:45:05 +0000 (08:45 +0200)
committerCyperghost <olaf_schmitz_1@t-online.de>
Tue, 15 Oct 2024 06:45:05 +0000 (08:45 +0200)
ts/WoltLabSuite/WebComponent/global.d.ts

index 9df4ebece82863f2bf8302dfb411177c37bf44d7..91c2d1c7cb507e0f5f4fcea47b33c5e39b65b5fc 100644 (file)
@@ -1,8 +1,4 @@
 // This is a workaround for TS2669.
-import { I18n } from "emoji-picker-element/shared";
-import type * as Language from "./Language";
-import { Template } from "./Template";
-
 export {};
 
 // This is duplicated from the regular `global.ts` that we cannot
@@ -11,6 +7,10 @@ type Codepoint = string;
 type HasRegularVariant = boolean;
 type IconMetadata = [Codepoint, HasRegularVariant];
 
+import { I18n } from "emoji-picker-element/shared";
+import type * as Language from "./Language";
+import { Template } from "./Template";
+
 interface Reaction {
   title: string;
   renderedIcon: string;