refactor(frontend): remove $i

This commit is contained in:
syuilo 2023-04-01 13:52:07 +09:00
parent 7a8a756789
commit f16a7cbcf2
22 changed files with 34 additions and 19 deletions

View file

@ -1,12 +1,9 @@
/// <reference types="vue/macros-global" />
import type { $i } from '@/account';
import type { instance } from '@/instance';
import type { i18n } from '@/i18n';
declare module 'vue' {
interface ComponentCustomProperties {
$i: typeof $i;
$t: typeof i18n['t'];
$ts: typeof i18n['ts'];
}