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
2018-10-23 00:33:17 +02:00

28 lines
503 B
TypeScript

import {SettingsService} from '../settings.service';
export abstract class AbstractSettingsService<T> {
protected constructor(public _settingsService: SettingsService) {
}
get Settings() {
return this._settingsService.settings;
}
public getSettings(): Promise<void> {
return this._settingsService.getSettings();
}
public showInSimplifiedMode(): boolean {
return true;
}
isSupported() {
return true;
}
abstract updateSettings(settings: T): Promise<void>;
}