Fix imports

This commit is contained in:
David Baker 2025-11-20 18:53:24 +00:00
parent c8f4eff50b
commit 56de076a09
2 changed files with 2 additions and 4 deletions

View File

@ -7,10 +7,9 @@ Please see LICENSE files in the repository root for full details.
import { type I18nApi as II18nApi, type Variables, type Translations } from "@element-hq/element-web-module-api";
import { registerTranslations, _t } from "../i18n/i18n.ts";
import { getCurrentLanguage } from "../languageHandler.tsx";
import { humanizeTime } from "../i18n/humanize.ts";
import { type TranslationKey } from "../i18n/i18n.tsx";
import { registerTranslations, _t, type TranslationKey } from "../i18n/i18n.tsx";
export class I18nApi implements II18nApi {
/**

View File

@ -48,8 +48,7 @@ import { SortingAlgorithm } from "../stores/room-list-v3/skip-list/sorters/index
import MediaPreviewConfigController from "./controllers/MediaPreviewConfigController.ts";
import InviteRulesConfigController from "./controllers/InviteRulesConfigController.ts";
import { type ComputedInviteConfig } from "../@types/invite-rules.ts";
import { type TranslationKey } from "../i18n/i18n.ts";
import { _t, _td } from "../i18n/i18n.ts";
import { type TranslationKey, _t, _td } from "../i18n/i18n.tsx";
export const defaultWatchManager = new WatchManager();