import {OrderedCollectionFields} from "../orderedCollection/OrderedCollection.types"; import { OrderedCollectionPageNextValue, OrderedCollectionPagePartOfValue, OrderedCollectionPagePrevValue, StartIndexValue } from "../../common/common.types"; import {CollectionPageFields} from "../collectionPage/CollectionPage.types"; import {Modify} from "../../common/utils"; interface OmittedCollectionPageFields extends Omit {} export interface OrderedCollectionPageFields extends OrderedCollectionFields, Modify { /** * A non-negative integer value identifying the relative position * within the logical view of a strictly ordered collection. * * {@link https://www.w3.org/ns/activitystreams#startIndex Docs} */ startIndex?: StartIndexValue; }