File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
import { Plugin } from 'obsidian' ;
2
2
import { HanayamaHuzzlesRecipeSettings } from 'src/recipes/hanayama_huzzles/settings/HanayamaHuzzlesRecipeSettings' ;
3
3
import { IQPuzzlesRecipeSettings } from 'src/recipes/iq_puzzles/settings/IQPuzzlesRecipeSettings' ;
4
- import { RecipesPluginSettings } from './data/RecipesPluginSettings ' ;
4
+ import { RecipesSettings } from './data/RecipesSettings ' ;
5
5
6
6
export class SettingsManager {
7
- static readonly #DEFAULT_SETTINGS: Partial < RecipesPluginSettings > = {
7
+ static readonly #DEFAULT_SETTINGS: Partial < RecipesSettings > = {
8
8
hanayamaHuzzles : new HanayamaHuzzlesRecipeSettings ( ) ,
9
9
iqPuzzles : new IQPuzzlesRecipeSettings ( )
10
10
} ;
11
11
12
- settings : RecipesPluginSettings ;
12
+ settings : RecipesSettings ;
13
13
14
14
constructor ( private plugin : Plugin ) { }
15
15
Original file line number Diff line number Diff line change 1
1
import { HanayamaHuzzlesRecipeSettings } from 'src/recipes/hanayama_huzzles/settings/HanayamaHuzzlesRecipeSettings' ;
2
2
import { IQPuzzlesRecipeSettings } from 'src/recipes/iq_puzzles/settings/IQPuzzlesRecipeSettings' ;
3
3
4
- export interface RecipesPluginSettings {
4
+ export interface RecipesSettings {
5
5
hanayamaHuzzles : HanayamaHuzzlesRecipeSettings ;
6
6
iqPuzzles : IQPuzzlesRecipeSettings ;
7
7
}
You can’t perform that action at this time.
0 commit comments