UNPKG

565 BTypeScriptView Raw
1import { XhrModule } from "./xhr";
2export declare class LdmModule {
3 private xhr;
4 constructor(xhr: XhrModule);
5 /**
6 * Get closest connecting attributes in the LDM by calling the "attributeupperbound" endpoint
7 *
8 * @method getCommonAttributes
9 * @param {String} projectId A project identifier
10 * @param {Array} attributeUris Input list of attribute URIs
11 * @return {Promise} Resolves with result list of attribute URIs
12 */
13 getCommonAttributes(projectId: string, attributeUris: ReadonlyArray<string>): Promise<string[]>;
14}