style: remove unused imports

This commit is contained in:
Twig 2025-07-16 04:55:30 +02:00
parent b642deb087
commit bca209ef81
No known key found for this signature in database
5 changed files with 1 additions and 9 deletions

View file

@ -6,9 +6,6 @@
</template>
<script lang="ts" setup>
import ContextMenu from '~/components/UserInterface/ContextMenu.vue';
import { render } from 'vue';
const banner = useState("banner", () => false);
onMounted(() => {

View file

@ -66,7 +66,6 @@
import DOMPurify from 'dompurify';
import { parse } from 'marked';
import type { MessageProps } from '~/types/props';
import generateIrcColor from '~/utils/generateIrcColor';
import MessageMedia from './MessageMedia.vue';
import MessageReply from './UserInterface/MessageReply.vue';

View file

@ -22,8 +22,6 @@
</template>
<script lang="ts" setup>
import type { StatsResponse } from '~/types/interfaces';
definePageMeta({
layout: "auth"

View file

@ -1,5 +1,3 @@
import type { RuntimeNuxtHooks } from 'nuxt/schema';
declare module "nuxt/schema" {
interface RuntimeNuxtHooks {
"app:message:right-clicked": (payload: { messageId: string }) => void

View file

@ -1,4 +1,4 @@
import type { NitroFetchRequest, NitroFetchOptions } from "nitropack";
import type { NitroFetchOptions } from "nitropack";
export default async <T>(path: string, options: NitroFetchOptions<string> = {}) => {
console.log("path received:", path);