@microfocus/alm-octane-js-rest-sdk
Version:
NodeJS wrapper for the Open Text ALM Octane API
18 lines • 408 B
TypeScript
/**
* @class
*
* @param {String} id - the referenced entity id
* @param {String} type - the referenced entity type
*/
declare class Reference {
id: string;
type: string;
static parse: (val: any) => Reference | null;
constructor(id: string, type: string);
toJSON(): {
id: string;
type: string;
};
}
export default Reference;
//# sourceMappingURL=reference.d.ts.map