UNPKG

385 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}
10export declare const MODULE_DEFAULT_CONFIG: UserModuleConfig;
11export declare const MODULE_CONFIG_TOKEN: InjectionToken<UserModuleConfig>;