diff options
| author | Adam Malczewski <[email protected]> | 2026-03-28 03:34:00 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-03-28 03:34:00 +0900 |
| commit | 7edf1f2bbccd514a497ade838c821ca91d499bf9 (patch) | |
| tree | d9c848f2a9cfd88f43bd0e783b664f1e249e75b3 /src/main.ts | |
| parent | 94bca96aec909890da7c06a03e5c2c6b380be4a8 (diff) | |
| download | ai-pulse-obsidian-plugin-7edf1f2bbccd514a497ade838c821ca91d499bf9.tar.gz ai-pulse-obsidian-plugin-7edf1f2bbccd514a497ade838c821ca91d499bf9.zip | |
cleanup typescript
Diffstat (limited to 'src/main.ts')
| -rw-r--r-- | src/main.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.ts b/src/main.ts index e66a126..12dadaf 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,5 +1,6 @@ import { Plugin, WorkspaceLeaf } from "obsidian"; -import { AIPulseSettings, DEFAULT_SETTINGS } from "./settings"; +import type { AIPulseSettings } from "./settings"; +import { DEFAULT_SETTINGS } from "./settings"; import { ChatView, VIEW_TYPE_CHAT } from "./chat-view"; import { testConnection, listModels } from "./ollama-client"; import { getDefaultToolStates } from "./tools"; |
