1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-02 03:55:45 +02:00
Files
misskey/packages/frontend/src/boot/sub-boot.ts
Kagami Sascha Rosylight fa03f61529 add ts-nocheck
2023-07-31 13:16:54 +02:00

15 lines
428 B
TypeScript

// @ts-nocheck
/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { computed, createApp, watch, markRaw, version as vueVersion, defineAsyncComponent } from 'vue';
import { common } from './common';
export async function subBoot() {
const { isClientUpdated } = await common(() => createApp(
defineAsyncComponent(() => import('@/ui/minimum.vue')),
));
}