UNPKG

systelab-translate

Version:

The internationalization (i18n) library for Systelab

13 lines (12 loc) 476 B
import { Observable } from 'rxjs'; import { TranslateLoader } from '@ngx-translate/core'; import { HttpClient } from '@angular/common/http'; import { Location } from '@angular/common'; export declare class LocalizableTranslateStaticLoader implements TranslateLoader { private http; private location; protected prefix: string; constructor(http: HttpClient, location: Location); getTranslation(locale: string): Observable<any>; private mergeRecursive; }