1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/frontend/app/settings/_abstract/abstract.settings.service.ts

23 lines
428 B
TypeScript
Raw Normal View History

2017-07-15 14:27:12 +02:00
import {SettingsService} from "../settings.service";
export abstract class AbstractSettingsService<T> {
2017-07-15 17:29:40 +02:00
constructor(public _settingsService: SettingsService) {
2017-07-15 14:27:12 +02:00
}
2017-07-15 17:29:40 +02:00
get Settings() {
return this._settingsService.settings;
}
2017-07-15 14:27:12 +02:00
public getSettings(): Promise<void> {
return this._settingsService.getSettings();
}
isSupported() {
return true;
}
abstract updateSettings(settings: T): Promise<void>;
2017-07-13 23:39:09 +02:00
}