UNPKG

@gooddata/gooddata-js

Version:
15 lines (14 loc) 565 B
import { XhrModule } from "./xhr"; export declare class LdmModule { private xhr; constructor(xhr: XhrModule); /** * Get closest connecting attributes in the LDM by calling the "attributeupperbound" endpoint * * @method getCommonAttributes * @param {String} projectId A project identifier * @param {Array} attributeUris Input list of attribute URIs * @return {Promise} Resolves with result list of attribute URIs */ getCommonAttributes(projectId: string, attributeUris: ReadonlyArray<string>): Promise<string[]>; }