UNPKG

@cause-911/core

Version:

Run `npm install @cause-911/core --save` to add this library to your project

12 lines (11 loc) 531 B
import { HttpBackend } from '@angular/common/http'; import { Observable } from 'rxjs'; import { CoreModuleOptions } from '../models/core-module-options'; import { TranslateLoader } from '@ngx-translate/core'; export declare class CustomMultiTranslateHttpLoader implements TranslateLoader { private http; private resources; constructor(httpBackend: HttpBackend, options: CoreModuleOptions); getTranslation(lang: string): Observable<any>; getOneRessourceTranslation(lang: string, config: any): Observable<any>; }