import { Observable } from 'rxjs/Observable'; import { HttpClient } from '@angular/common/http'; export declare class CommonStructureService { private http; private url; selectPath: string; selectType: string; sessionId: string; private server_ip; private commonstructure_url; constructor(http: HttpClient, url: string); /** * 根据元数据类型和id,获取通用structure * @param type 元数据类型 * @param id 元数据id */ getCommonStructure(type: string, id: string): Observable; }