import { TopicInformation } from "./TopicInformation"; export interface PageTopicInformation extends TopicInformation { /** * The title of the publishing app in which the pageid in the topic reside * * */ readonly publishingAppTitle: string; /** * The title of the page in with the pageid in the topic reside * (Latest published version title) * */ readonly pageTitle: string; /** * The title of the page collection (if any) in which the page with the pageid in the topic is a child * (Latest published version title) * */ readonly pageCollectionTitle: string; /** * The title of the page collection (if any) in which the page with the pageid in the topic is a child *(Latest published version title) * */ readonly pageTypeTitle: string; }