MCPcopy Create free account
hub / github.com/Xallt/sync-graph-settings / SyncGraphPluginSettings

Interface SyncGraphPluginSettings

main.ts:3–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected