Files
alfresco-ng2-components/ng2-components/ng2-alfresco-documentslist/dist/alfresco.service.d.ts
Mario Romano 07807e7bc3 # add dist
2016-04-21 11:56:31 +01:00

17 lines
594 B
TypeScript

import { Http } from 'angular2/http';
import { Observable } from 'rxjs/Observable';
import { FolderEntity } from "./core/entities/folder.entity";
import { DocumentEntity } from "./core/entities/document.entity";
export declare class AlfrescoService {
private http;
constructor(http: Http);
private _host;
private _baseUrlPath;
host: string;
private getBaseUrl();
getFolder(folder: string): Observable<FolderEntity>;
getDocumentThumbnailUrl(document: DocumentEntity): string;
getContentUrl(document: DocumentEntity): string;
private handleError(error);
}