AlfrescoTranslationLoader fixed build error

This commit is contained in:
mauriziovitale84
2016-05-11 10:43:17 +01:00
parent 9e973873ca
commit ac680ae176
4 changed files with 13 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
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>;
}