Interface IContentData

interface IContentData {
    $: ContentDeliver;
    additionalManifests: IContentManifests;
    contentDeliverData: IContentDeliverData;
    contentID: string;
    manifests: IContentManifests;
    options: IContentOption;
    postloadPromise: null | Promise<void>;
    preloadPromise: null | Promise<void>;
}

Properties

additionalManifests: IContentManifests
contentDeliverData: IContentDeliverData
contentID: string
postloadPromise: null | Promise<void>
preloadPromise: null | Promise<void>