1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/settings/_abstract/abstract.settings.service.ts

24 lines
438 B
TypeScript
Raw Normal View History

2018-03-31 03:30:30 +08:00
import {SettingsService} from '../settings.service';
2017-07-15 20:27:12 +08:00
export abstract class AbstractSettingsService<T> {
protected constructor(public _settingsService: SettingsService) {
2017-07-15 23:29:40 +08:00
2017-07-15 20:27:12 +08:00
}
2017-07-15 23:29:40 +08:00
get Settings() {
return this._settingsService.settings;
}
2017-07-15 20:27:12 +08:00
public getSettings(): Promise<void> {
return this._settingsService.getSettings();
}
isSupported() {
return true;
}
2018-03-31 03:30:30 +08:00
abstract updateSettings(settings: T): Promise<void>;
2017-07-14 05:39:09 +08:00
}