From 4f46276ebf8c4433f25102c29a68da5b01c0de95 Mon Sep 17 00:00:00 2001 From: vorotamoroz Date: Thu, 15 Jan 2026 12:45:13 +0900 Subject: [PATCH] Fix for CI --- src/deps.ts | 2 +- test/harness/obsidian-mock.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/deps.ts b/src/deps.ts index 330c3df..08a78f7 100644 --- a/src/deps.ts +++ b/src/deps.ts @@ -31,7 +31,6 @@ export { TextComponent, ToggleComponent, DropdownComponent, - ValueComponent, } from "obsidian"; export type { DataWriteOptions, @@ -40,6 +39,7 @@ export type { RequestUrlResponse, MarkdownFileInfo, ListedFiles, + ValueComponent, } from "obsidian"; import { normalizePath as normalizePath_ } from "obsidian"; const normalizePath = normalizePath_ as (from: T) => T; diff --git a/test/harness/obsidian-mock.ts b/test/harness/obsidian-mock.ts index 291e7e6..cccceb9 100644 --- a/test/harness/obsidian-mock.ts +++ b/test/harness/obsidian-mock.ts @@ -991,3 +991,5 @@ export type ListedFiles = { files: string[]; folders: string[]; }; + +export type ValueComponent = any; \ No newline at end of file