You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
abp/npm/ng-packs/dist/setting-management/lib/services/setting-management.service....

19 lines
618 B

import { SettingTab } from '@abp/ng.theme.shared';
import { Router } from '@angular/router';
import { Store, Actions } from '@ngxs/store';
import { OAuthService } from 'angular-oauth2-oidc';
export declare class SettingManagementService {
private actions;
private router;
private store;
private oAuthService;
settings: SettingTab[];
selected: SettingTab;
private destroy$;
constructor(actions: Actions, router: Router, store: Store, oAuthService: OAuthService);
ngOnDestroy(): void;
setSettings(): void;
checkSelected(): void;
setSelected(selected: SettingTab): void;
}