diff --git a/src/interfaces/index.ts b/src/interfaces/index.ts index 1c4aabec..1a4290b8 100644 --- a/src/interfaces/index.ts +++ b/src/interfaces/index.ts @@ -33,7 +33,6 @@ import type { } from "src/interfaces/properties"; import type { MetadataExtractor } from "src/interfaces/settings"; - export { DEFAULT_SETTINGS, EnumbSettingsTabId, diff --git a/src/utils/logs.ts b/src/utils/logs.ts index e4bae247..d1cef707 100644 --- a/src/utils/logs.ts +++ b/src/utils/logs.ts @@ -1,9 +1,6 @@ import { Notice, Platform, setIcon, TFile } from "obsidian"; import type Enveloppe from "../main"; -import { - type EnveloppeSettings, - type Properties, -} from "@interfaces"; +import type { EnveloppeSettings, Properties } from "@interfaces"; import i18next from "i18next"; import type Publisher from "../GitHub/upload"; @@ -61,7 +58,7 @@ export class Logs { text: message, cls: ["enveloppe", cls, "icons"], }); - setIcon(span, icon) + setIcon(span, icon); noticeFrag.createEl("span", { cls: ["enveloppe", cls, "notification"], }).innerHTML = message; diff --git a/src/utils/status_bar.ts b/src/utils/status_bar.ts index df5e0e58..80d5144b 100644 --- a/src/utils/status_bar.ts +++ b/src/utils/status_bar.ts @@ -1,6 +1,4 @@ -import { - type Properties, -} from "@interfaces"; +import type { Properties } from "@interfaces"; import i18next from "i18next"; import { setIcon, type Notice } from "obsidian"; import type { Logs } from "./logs";