···11import { browser } from "#imports";
22import { Plugin } from "@/utils/plugin";
33-import { Toggle } from "@/utils/storage";
44-import { StorageState } from "@/utils/storage/state.svelte";
33+import type { Toggle } from "@/utils/storage";
44+import type { StorageState } from "@/utils/storage/state.svelte";
5566let logos: HTMLAnchorElement[] | null = null;
77let controller: AbortController | null = null;
+2-2
src/entrypoints/plugins/modernIcons/index.ts
···88} from "@/utils";
99import { Plugin } from "@/utils/plugin";
1010import styleText from "./styles.css?inline";
1111-import { Toggle } from "@/utils/storage";
1212-import { StorageState } from "@/utils/storage/state.svelte";
1111+import type { Toggle } from "@/utils/storage";
1212+import type { StorageState } from "@/utils/storage/state.svelte";
13131414const ID = "modernIcons";
1515const PLUGIN_ID = `plugin-${ID}`;
+2-2
src/entrypoints/plugins/scrollPeriod.ts
···11import { getCurrentPeriod } from "@/utils/periodUtils";
22import { Plugin } from "@/utils/plugin";
33-import { Slider, Toggle } from "@/utils/storage";
44-import { StorageState } from "@/utils/storage/state.svelte";
33+import type { Slider, Toggle } from "@/utils/storage";
44+import type { StorageState } from "@/utils/storage/state.svelte";
5566let interval: NodeJS.Timeout | null = null;
77let controller: AbortController | null = null;
+2-2
src/entrypoints/plugins/subheader/index.ts
···22import { Plugin } from "@/utils/plugin";
33import styleText from "./styles.css?inline";
44import { dataAttr, injectInlineStyles, setDataAttr, uninjectInlineStyles } from "@/utils";
55-import { StorageState } from "@/utils/storage/state.svelte";
66-import { Toggle } from "@/utils/storage";
55+import type { StorageState } from "@/utils/storage/state.svelte";
66+import type { Toggle } from "@/utils/storage";
7788const ID = "subheader";
99const PLUGIN_ID = `plugin-${ID}`;
+2-2
src/entrypoints/plugins/tabTitle.ts
···11import { Plugin } from "@/utils/plugin";
22-import { Toggle } from "@/utils/storage";
33-import { StorageState } from "@/utils/storage/state.svelte";
22+import type { Toggle } from "@/utils/storage";
33+import type { StorageState } from "@/utils/storage/state.svelte";
4455const ID = "tabTitle";
66let originalTitle: string | null = null;