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

23 lines
428 B
TypeScript
Raw Normal View History

2017-07-15 20:27:12 +08:00
import {SettingsService} from "../settings.service";
export abstract class AbstractSettingsService<T> {
2017-07-15 23:29:40 +08:00
constructor(public _settingsService: SettingsService) {
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;
}
abstract updateSettings(settings: T): Promise<void>;
2017-07-14 05:39:09 +08:00
}