Blame view

lib/app-config/app-config.service.d.ts 245 Bytes
75f29219   Anan Sangthongtum   first commit
1
2
3
4
5
6
7
8
import { HttpClient } from '@angular/common/http';
export declare class AppConfigService {
    private http;
    private appConfig;
    constructor(http: HttpClient);
    loadAppConfig(appConfigPath: any): Promise<void>;
    getConfig(): any;
}