1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-03 05:36:16 +02:00

fix lint @typescript-eslint/ban-types

This commit is contained in:
Johann150
2022-07-04 16:46:48 +02:00
parent d748ba2c51
commit a228d1ddaa
5 changed files with 7 additions and 10 deletions

View File

@@ -13,9 +13,6 @@ const props = defineProps<{
router?: Router;
}>();
const emit = defineEmits<{
}>();
const router = props.router ?? inject('router');
if (router == null) {

View File

@@ -13,8 +13,6 @@
import { onMounted, ref, watch, PropType, onBeforeUnmount } from 'vue';
import tinycolor from 'tinycolor2';
const props = defineProps<{}>();
const loaded = !!window.TagCanvas;
const SAFE_FOR_HTML_ID = 'abcdefghijklmnopqrstuvwxyz';
const computedStyle = getComputedStyle(document.documentElement);