mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
10 lines
273 B
TypeScript
10 lines
273 B
TypeScript
import { Http } from 'angular2/http';
|
|
import { Observable } from 'rxjs/Observable';
|
|
export declare class AlfrescoTranslationLoader {
|
|
private http;
|
|
private prefix;
|
|
private suffix;
|
|
constructor(http: Http);
|
|
getTranslation(lang: string): Observable<any>;
|
|
}
|