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

let current: Settings = DefaultSetting;

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

  get(): Settings;

  // eslint-disable-next-line semi
}

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

  get(): Settings {
    return current;
  }
}