@sitecore/sc-contenthub-webclient-sdk
Version:
Sitecore Content Hub WebClient SDK.
12 lines (11 loc) • 591 B
TypeScript
import { IRelationFactory } from "../factories/relation-factory";
import { EntityDefinitionMapper } from "../mappers/entity-definition-mapper";
import { EntityMapper } from "../mappers/entity-mapper";
import { IInternalClient } from "./internal-client";
import { IWebContentHubClient } from "./web-content-hub-client";
export interface IExtendedContentHubClient extends IWebContentHubClient {
readonly internalClient: IInternalClient;
readonly relationFactory: IRelationFactory;
readonly entityMapper: EntityMapper;
readonly entityDefinitionMapper: EntityDefinitionMapper;
}