style: remove unused imports
This commit is contained in:
parent
b642deb087
commit
bca209ef81
5 changed files with 1 additions and 9 deletions
3
app.vue
3
app.vue
|
@ -6,9 +6,6 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import ContextMenu from '~/components/UserInterface/ContextMenu.vue';
|
|
||||||
import { render } from 'vue';
|
|
||||||
|
|
||||||
const banner = useState("banner", () => false);
|
const banner = useState("banner", () => false);
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
|
|
|
@ -66,7 +66,6 @@
|
||||||
import DOMPurify from 'dompurify';
|
import DOMPurify from 'dompurify';
|
||||||
import { parse } from 'marked';
|
import { parse } from 'marked';
|
||||||
import type { MessageProps } from '~/types/props';
|
import type { MessageProps } from '~/types/props';
|
||||||
import generateIrcColor from '~/utils/generateIrcColor';
|
|
||||||
import MessageMedia from './MessageMedia.vue';
|
import MessageMedia from './MessageMedia.vue';
|
||||||
import MessageReply from './UserInterface/MessageReply.vue';
|
import MessageReply from './UserInterface/MessageReply.vue';
|
||||||
|
|
||||||
|
|
|
@ -22,8 +22,6 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import type { StatsResponse } from '~/types/interfaces';
|
|
||||||
|
|
||||||
|
|
||||||
definePageMeta({
|
definePageMeta({
|
||||||
layout: "auth"
|
layout: "auth"
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
import type { RuntimeNuxtHooks } from 'nuxt/schema';
|
|
||||||
|
|
||||||
declare module "nuxt/schema" {
|
declare module "nuxt/schema" {
|
||||||
interface RuntimeNuxtHooks {
|
interface RuntimeNuxtHooks {
|
||||||
"app:message:right-clicked": (payload: { messageId: string }) => void
|
"app:message:right-clicked": (payload: { messageId: string }) => void
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { NitroFetchRequest, NitroFetchOptions } from "nitropack";
|
import type { NitroFetchOptions } from "nitropack";
|
||||||
|
|
||||||
export default async <T>(path: string, options: NitroFetchOptions<string> = {}) => {
|
export default async <T>(path: string, options: NitroFetchOptions<string> = {}) => {
|
||||||
console.log("path received:", path);
|
console.log("path received:", path);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue