@gooddata/gooddata-js
Version:
GoodData JavaScript SDK
15 lines (14 loc) • 565 B
TypeScript
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[]>;
}