@sitecore/sc-contenthub-webclient-sdk
Version:
Sitecore Content Hub WebClient SDK.
10 lines (9 loc) • 446 B
TypeScript
import type { MapStringTo, Nullable } from "../base-types";
import { MinimalSchema } from "../contracts/querying/minimal-schema";
import { EntityResource } from "./entity-resource";
import { ListResource } from "./list-resource";
export declare class EntityCollectionResource extends ListResource<EntityResource> {
items: Array<EntityResource>;
lastHitData?: Nullable<Array<string>>;
minimalSchemaList?: MapStringTo<MinimalSchema>;
}