import { BaseFetchOptions } from '../../../../classes'; /** * FetchContentOptionsDtoV1 * * Data Transfer Object for querying content collections. * Inherits timestamp filtering fields and extends them with * content-specific query parameters. */ export type FetchContentOptionsDtoV1 = BaseFetchOptions & { populateHtml?: boolean; resource?: string; resources?: string[]; resourceId?: string; resourceIds?: string[]; };