mirror of
https://github.com/wenlzhang/obsidian-tag-index.git
synced 2026-07-22 05:44:03 +00:00
10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
import { App } from 'obsidian';
|
|
|
|
export interface PluginSettings {
|
|
// Add your settings properties here
|
|
exampleSetting: string;
|
|
}
|
|
|
|
export const DEFAULT_SETTINGS: PluginSettings = {
|
|
exampleSetting: 'default'
|
|
};
|