aboutsummaryrefslogtreecommitdiff
path: root/src/content/repositories/SettingRepository.ts
blob: 1e393cd7ce34f45542f716fe927c4d1381efbb17 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import Settings, { DefaultSetting } from "../../shared/settings/Settings";

let current: Settings = DefaultSetting;

export default interface SettingRepository {
  set(setting: Settings): void;

  get(): Settings;
}

export class SettingRepositoryImpl implements SettingRepository {
  set(setting: Settings): void {
    current = setting;
  }

  get(): Settings {
    return current;
  }
}