| 1 | import { Plugin, WorkspaceLeaf, normalizePath, PluginSettingTab, Setting, App } from 'obsidian'; |
| 2 | |
| 3 | interface SyncGraphPluginSettings { |
| 4 | autoSync: boolean; |
| 5 | defaultDepth: number; |
| 6 | defaultIncomingLinks: boolean; |
| 7 | defaultOutgoingLinks: boolean; |
| 8 | defaultNeighborLinks: boolean; |
| 9 | defaultShowTags: boolean; |
| 10 | } |
| 11 | |
| 12 | const DEFAULT_SETTINGS: SyncGraphPluginSettings = { |
| 13 | autoSync: false, |
nothing calls this directly
no outgoing calls
no test coverage detected