MCPcopy Index your code
hub / github.com/callumalpass/tasknotes / constructor

Method constructor

src/utils/DependencyCache.ts:55–69  ·  view source on GitHub ↗
(
		app: App,
		settings: TaskNotesSettings,
		fieldMapper: FieldMapper | undefined,
		statusManager: DependencyStatusClassifier,
		isTaskFileCallback: (frontmatter: unknown) => boolean
	)

Source from the content-addressed store, hash-verified

53 private isTaskFileCallback: (frontmatter: unknown) => boolean;
54
55 constructor(
56 app: App,
57 settings: TaskNotesSettings,
58 fieldMapper: FieldMapper | undefined,
59 statusManager: DependencyStatusClassifier,
60 isTaskFileCallback: (frontmatter: unknown) => boolean
61 ) {
62 super();
63 this.app = app;
64 this.settings = settings;
65 this.excludedFolders = parseExcludedFolders(settings.excludedFolders);
66 this.fieldMapper = fieldMapper;
67 this.statusManager = statusManager;
68 this.isTaskFileCallback = isTaskFileCallback;
69 }
70
71 /**
72 * Initialize by setting up event listeners

Callers

nothing calls this directly

Calls 1

parseExcludedFoldersFunction · 0.90

Tested by

no test coverage detected