chore(web): type fixes

This commit is contained in:
Zack Spear
2023-10-30 17:24:23 -07:00
committed by Zack Spear
parent 3145e30cf1
commit 220a64ebdc
17 changed files with 60 additions and 58 deletions

View File

@@ -1,5 +1,5 @@
import { Theme } from '~/store/theme';
import { UserProfileLink } from '~/types/userProfile';
import type { Theme } from '~/store/theme';
import type { UserProfileLink } from '~/types/userProfile';
export interface ServerStateConfigStatus {
error?: 'INVALID' | 'NO_KEY_SERVER' | 'UNKNOWN_ERROR' | 'WITHDRAWN';

View File

@@ -2,6 +2,7 @@ import { ArrowTopRightOnSquareIcon } from '@heroicons/vue/24/solid';
export interface UserProfileLink {
click?: any; // @todo be more specific
clickParams?: string[] | number[];
disabled?: boolean;
emphasize?: boolean;
external?: boolean;