UNPKG

438 BTypeScriptView Raw
1import { InjectionToken } from "@angular/core";
2export interface UserModuleConfig {
3 endpoints: {
4 changePassword: string;
5 editProfile: string;
6 getUserInfo: string;
7 profileInformation: string;
8 };
9 forms: {
10 profile_edit: string;
11 };
12}
13export declare const MODULE_DEFAULT_CONFIG: UserModuleConfig;
14export declare const MODULE_CONFIG_TOKEN: InjectionToken<UserModuleConfig>;