@sitecore/sc-contenthub-webclient-sdk
Version:
Sitecore Content Hub WebClient SDK.
12 lines (11 loc) • 445 B
TypeScript
import type { MapStringTo } from "../../base-types";
import { EntityResource } from "../entity-resource";
import { RelationResource } from "../relation-resource";
export interface IAggregatedEntityResource {
entity: EntityResource;
relations: MapStringTo<RelationResource>;
}
export declare class AggregatedEntityResource implements IAggregatedEntityResource {
entity: EntityResource;
relations: MapStringTo<RelationResource>;
}