Fix for CI

This commit is contained in:
vorotamoroz
2026-01-15 12:45:13 +09:00
parent f68c1855da
commit 4f46276ebf
2 changed files with 3 additions and 1 deletions

View File

@@ -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 <T extends string | FilePath>(from: T) => T;

View File

@@ -991,3 +991,5 @@ export type ListedFiles = {
files: string[];
folders: string[];
};
export type ValueComponent = any;